जब एक परियोजना की रूपरेखा तैयार करना और वास्तुकला का निर्माण करना मैं दो दिशाओं से शुरू करता हूं। पहले मैं डिजाइन की जा रही परियोजना को देखता हूं और निर्धारित करता हूं कि किस समस्या को हल करने की आवश्यकता है। मैं उन लोगों को देखता हूं जो इसका उपयोग कर रहे हैं और एक कच्चे यूआई डिजाइन के साथ शुरू करेंगे। इस बिंदु पर मैं डेटा को अनदेखा कर रहा हूं और केवल यह देख रहा हूं कि उपयोगकर्ता क्या पूछ रहे हैं और इसका उपयोग कौन करेगा।
एक बार मुझे इस बात की बुनियादी समझ हो जाती है कि वे मुझसे क्या पूछ रहे हैं, यह निर्धारित करते हैं कि मुख्य डेटा क्या है, तो वे हेरफेर करेंगे और उस डेटा के लिए एक बुनियादी डेटाबेस लेआउट शुरू करेंगे। फिर मैं उन व्यावसायिक नियमों को परिभाषित करने के लिए सवाल पूछना शुरू करता हूं जो डेटा को घेरते हैं।
दोनों छोर से शुरू करके मैं स्वतंत्र रूप से इस तरह से एक परियोजना को पूरा करने में सक्षम हूं जो दो छोरों को एक साथ पिघला देता है। मैं हमेशा कोशिश करता हूं कि डिजाइनों को एक साथ पिघलने से पहले जितनी देर तक अलग रखा जा सके, लेकिन जब तक मैं आगे बढ़ूं, सभी की आवश्यकताओं को ध्यान में रखें।
एक बार जब मुझे समस्या के प्रत्येक सिरे के बारे में अच्छी समझ हो जाती है तो मैं उस परियोजना के ढांचे को तैयार करना शुरू कर देता हूँ जो समस्या के समाधान के लिए बनाई जाएगी।
एक बार परियोजना समाधान का मूल लेआउट बनाया जाता है, मैं परियोजना की कार्यक्षमता को देखता हूं और काम करने के प्रकार के आधार पर उपयोग किए जाने वाले नामस्थानों का आधार सेट करता हूं। यह खाते, खरीदारी की टोकरी, सर्वेक्षण आदि जैसी चीजें हो सकती हैं।
यहां मूल समाधान लेआउट है जो मैं हमेशा से शुरू करता हूं। जैसा कि परियोजनाएं बेहतर ढंग से परिभाषित होती हैं, मैं इसे प्रत्येक परियोजना की विशिष्ट आवश्यकताओं को पूरा करने के लिए परिष्कृत करता हूं। कुछ क्षेत्रों को दूसरों के साथ मिलाया जा सकता है और मैं आवश्यकतानुसार कुछ विशेष जोड़ सकता हूं।
SolutionName
.ProjectNameDocuments
For large projects there are certain documents that need to be kept with
it. For this I actually create a separate project or folder within the
solution to hold them.
.ProjectNameUnitTest
Unit testing always depends on the project - sometimes it is just really
basic to catch edge cases and sometimes it is set up for full code
coverage. I have recently added graphical unit testing to the arsenal.
.ProjectNameInstaller
Some projects have specific installation requirements that need to be
handled at a project level.
.ProjectNameClassLibrary
If there is a need for web services, APIs, DLLs or such.
.ProjectNameScripts (**Added 2/29/2012**)
I am adding this because I just found a need for one in my current project.
This project holds the following types of scripts: SQL (Tables, procs,
views), SQL Data update scripts, VBScripts, etc.
.ProjectName
.DataRepository
Contains base data classes and database communication. Sometimes
also hold a directory that contains any SQL procs or other specific
code.
.DataClasses
Contains the base classes, structs, and enums that are used in the
project. These may be related to but not necessarily be connected
to the ones in the data repository.
.Services
Performs all CRUD actions with the Data, done in a way that the
repository can be changed out with no need to rewrite any higher
level code.
.Business
Performs any data calculations or business level data validation,
does most interaction with the Service layer.
.Helpers
I always create a code module that contains helper classes. These
may be extensions on system items, standard validation tools,
regular expressions or custom-built items.
.UserInterface
The user interface is built to display and manipulate the data.
UI Forms always get organized by functional unit namespace with
additional folders for shared forms and custom controls.