Esempio n. 1
0
 public UserRepository(EasyCrudContext databaseContext)
 {
     _databaseContext = databaseContext;
 }
Esempio n. 2
0
 public IUserRepository GetUserRepository(EasyCrudContext context)
 {
     return(new UserRepository(context));
 }
Esempio n. 3
0
 public WorkflowFactory(IRepositoryFactory repositoryFactory)
 {
     _crudContext       = new EasyCrudContext();
     _repositoryFactory = repositoryFactory;
 }