Bir proje tasarlarken ve mimariyi düzenlerken iki yönden başlıyorum. Öncelikle tasarlanan projeye baktım ve hangi iş problemlerinin çözülmesi gerektiğini belirledim. Kullanacak olan insanlara bakıyorum ve kaba bir UI tasarımı ile başlıyorum. Bu noktada verileri görmezden geliyorum ve sadece kullanıcıların ne istediğini ve kimlerin kullanacağına bakıyorum.
Bir kez ne istediklerini temel olarak anladıktan sonra, temel verinin ne olduğunu değiştireceklerini belirler ve bu veriler için temel bir veritabanı düzenine başlar. Sonra verileri çevreleyen iş kurallarını tanımlamak için sorular sormaya başladım.
Her iki uçtan bağımsız olarak başlayarak iki ucu bir araya getirecek şekilde bir proje düzenleyebilirim. Tasarımları bir araya getirmeden önce her zaman mümkün olduğunca ayrı tutmaya çalışıyorum, ancak her birinin ileriye doğru ilerlediği gereklilikleri de aklımda tutuyorum.
Sorunun her bir ucunu iyi bir şekilde anladığımda, sorunu çözmek için yaratılacak olan projenin yapısını oluşturmaya başladım.
Proje çözümünün temel düzenini oluşturduktan sonra, projenin işlevselliğine bakıyorum ve yapılan işin türüne bağlı olarak kullanılan bir dizi isim alanı oluşturdum. Bu, Hesap, Alışveriş Sepeti, Anketler vb. Gibi şeyler olabilir.
İşte her zaman başladığım temel çözüm düzeni. Projeler daha iyi tanımlandığında, her projenin kendine özgü ihtiyaçlarını karşılamaya çalışıyorum. Bazı alanlar diğerleriyle birleştirilebilir ve gerektiğinde birkaç özel alan ekleyebilirim.
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.