Пример #1
0
 public GenerateChoresService(IGetElementsService getElementsService,
                              ICrudService <Chore> choresService,
                              IFormatService formatsService,
                              ICrudService <Installation> installationsService,
                              IKeepContext context)
 {
     _choresService        = choresService;
     _getElementsService   = getElementsService;
     _formatsService       = formatsService;
     _installationsService = installationsService;
     _context = context;
 }
Пример #2
0
 public FormatService(ICrudService <GenericChoreFormatLabel> genericChoreFormatLabelsService,
                      IKeepContext context)
 {
     _genericChoreFormatLabelsService = genericChoreFormatLabelsService;
     _context = context;
 }
Пример #3
0
 public CooperatorsRepository(IKeepContext db)
 {
     _db = (KeepContext)db;
 }
Пример #4
0
 public TreeViewService(IKeepContext context)
 {
     _context = context;
 }
Пример #5
0
 public GetElementsService(IKeepContext context)
 {
     _context = context;
 }
Пример #6
0
 public CardsRepository(IKeepContext db)
 {
     _db = (KeepContext)db;
 }