-
Notifications
You must be signed in to change notification settings - Fork 1
Creating Repositories
Eros Stein edited this page Jan 6, 2017
·
3 revisions
- Right-click your Repositories folder inside the Domain project and select
Add > New Item - Select Blayer and choose Repository
- Use the same name you used for the POCO class
A file is created with a similar content to this one:
using Blayer.Data;
namespace Your.Namespace.Domain.Repositories
{
public class StateRepository : Repository<State>
{
}
}If you created a POCO project, which you should :), you must add this using:
using Your.Namespace.Poco;
This is it for now, in other sections, when we start to work with customizations, we'll come back to this file and update it.