Ejemplo n.º 1
0
 public PopupService(VmmDbContext dbContext,
                     IFtpService ftpService,
                     IFileCacheService fileCacheService,
                     IConfigurationProvider configurationProvider)
 {
     this.dbContext             = dbContext;
     this.ftpService            = ftpService;
     this.fileCacheService      = fileCacheService;
     this.configurationProvider = configurationProvider;
 }
Ejemplo n.º 2
0
 public DocumentService(VmmDbContext dbContext,
                        IDocumentTypeService documentTypeService,
                        IFtpService ftpService,
                        IFileCacheService fileCacheService,
                        IConfigurationProvider configurationProvider)
 {
     this.dbContext             = dbContext;
     this.documentTypeService   = documentTypeService;
     this.configurationProvider = configurationProvider;
     this.ftpService            = ftpService;
     this.fileCacheService      = fileCacheService;
 }
Ejemplo n.º 3
0
 public EventTypeService(VmmDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 4
0
 public QueryService(VmmDbContext dbContext, IConfigurationProvider configurationProvider)
 {
     this.dbContext             = dbContext;
     this.configurationProvider = configurationProvider;
 }
Ejemplo n.º 5
0
 public UserService(VmmDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 6
0
 public EventService(VmmDbContext dbContext, IEventTypeService eventTypeService, IAreaService areaService)
 {
     this.dbContext        = dbContext;
     this.eventTypeService = eventTypeService;
     this.areaService      = areaService;
 }
Ejemplo n.º 7
0
 public AreaService(VmmDbContext dbContext)
 {
     this.dbContext = dbContext;
 }