Ejemplo n.º 1
0
 public UserRegisterService(AllDbContext allDbContext,
                            UserService userService,
                            MapperService mapper)
 {
     this.db          = allDbContext;
     this.userService = userService;
     this.mapper      = mapper;
 }
Ejemplo n.º 2
0
 public ServicesService(AllDbContext dbContext, MapperService mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Ejemplo n.º 3
0
 public LoginService(AllDbContext dbContext, UserService userService, MapperService mapper)
 {
     this.dbContext   = dbContext;
     this.userService = userService;
     this.mapper      = mapper;
 }
Ejemplo n.º 4
0
 public OrderService(AllDbContext dbContext, MapperService mapperService)
 {
     this.dbContext = dbContext;
     this.mapper = mapperService;
 }
Ejemplo n.º 5
0
 public OrderService(AllDbContext dbContext, MapperService mapperService, InsurancesService insurancesService)
 {
     this.dbContext         = dbContext;
     this.mapper            = mapperService;
     this.insurancesService = insurancesService;
 }
Ejemplo n.º 6
0
 public SourceService(MapperService mapper)
 {
     this.mapper = mapper;
 }
Ejemplo n.º 7
0
 public SourceService(MapperService mapper, DAL.AllDbContext dbContext)
 {
     this.mapper    = mapper;
     this.dbContext = dbContext;
 }
Ejemplo n.º 8
0
 public PlacementService(AllDbContext allDbContext, MapperService mapperService)
 {
     this.allDbContext = allDbContext;
     this.map          = mapperService;
 }
Ejemplo n.º 9
0
 public DeclarationService(AllDbContext dbContext, MapperService mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }