public GenericTablesService(ContextFactoryService contextFactoryService)
 {
     _contextFactoryService = contextFactoryService;
     _context = _contextFactoryService.GetDbContext(null);
 }
 protected GenericService(ContextFactoryService contextFactoryService)
 {
     _contextFactoryService = contextFactoryService;
     _context = contextFactoryService.GetDbContext(null);
 }
예제 #3
0
 public LogService(ContextFactoryService contextFactoryService) : base(contextFactoryService)
 {
 }