예제 #1
0
 public AccountApp(IAccountRepository accountRepository, ICommonRepositoryBase commonRepository)
 {
     this.accountRepository = accountRepository;
     this.commonRepository  = commonRepository;
 }
예제 #2
0
 public ProjectApp(IProjectRepository projectRepository, ICommonRepositoryBase commonRepository)
 {
     this.projectRepository = projectRepository;
     this.commonRepository  = commonRepository;
 }
예제 #3
0
 public CommonServiceBase(ICommonRepositoryBase <TEntity> commonRepositoryBase)
 {
     _commonRepositoryBase = commonRepositoryBase;
 }