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