Пример #1
0
 public ChangePasswordController(IEFDbRepository repo)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     _repo = repo;
 }
 public ResultSaveController(IEFDbRepository repo)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     _repo = repo;
 }
 public ReconcileGroupController(IEFDbRepository repo)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     _repo = repo;
 }
 public StandardPriceController(IEFDbRepository repo)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     _repo = repo;
 }
Пример #5
0
 public ReconcileFileController(IEFDbRepository repo, IExcelFileService excelFileService)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     if (excelFileService == null)
     {
         throw new ArgumentNullException();
     }
     _repo             = repo;
     _excelFileService = excelFileService;
 }
 public ItileQueryController(IEFDbRepository repo, IItileRepository itileRepo, IExcelFileService excelService)
 {
     if (repo == null)
     {
         throw new ArgumentNullException();
     }
     if (itileRepo == null)
     {
         throw new ArgumentNullException();
     }
     if (excelService == null)
     {
         throw new ArgumentNullException();
     }
     _repo         = repo;
     _itileRepo    = itileRepo;
     _excelService = excelService;
 }
Пример #7
0
 public ReconcileGroup()
 {
     _repo = new EFRepository();
 }
Пример #8
0
 public ExcelFileService()
 {
     _repo = new EFRepository();
 }