При розробці проекту та плануванні архітектури я починаю з двох напрямків. Спочатку я дивлюся на проект, який розробляється, і визначаю, які проблеми вирішення проблем потрібно вирішити. Я дивлюся на людей, які ним будуть користуватися, і починаю із сирого дизайну інтерфейсу. На даний момент я ігнорую дані та просто дивлюся на те, що запитують користувачі та хто буде ними користуватися.
Як тільки я зрозумію, що вони просять, я визначаю, що є основними даними, що вони будуть маніпулювати, і розпочати базовий макет бази даних для цих даних. Тоді я починаю задавати питання, щоб визначити правила бізнесу, які оточують дані.
Починаючи незалежно від обох кінців, я можу скласти проект таким чином, що поєднує два кінці разом. Я завжди намагаюся тримати конструкції окремо якомога довше, перш ніж їх з'єднувати, але майте на увазі вимоги кожного, коли я рухаюся вперед.
Як тільки я добре розумію кожен кінець проблеми, я починаю викладати структуру проекту, який буде створений для вирішення проблеми.
Після створення базового макета проектного рішення я переглядаю функціональність проекту та встановлюю базовий набір просторів імен, які використовуються залежно від типу роботи, яка виконується. Це можуть бути такі речі, як обліковий запис, кошик, опитування тощо.
Ось основний макет рішення, з якого я завжди починаю. У міру чіткішого визначення проектів я вдосконалюю його для задоволення конкретних потреб кожного проекту. Деякі області можуть бути об'єднані з іншими, і я можу додати кілька спеціальних, якщо потрібно.
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.