示例#1
0
 public ScheduleController(
     IScheduleService scheduleService,
     IDistrictsService districtService,
     ISRSObjectIndustrialService srsObjectIndustrialService,
     UserManager <ApplicationUser> userManager)
 {
     this.scheduleService            = scheduleService;
     this.districtService            = districtService;
     this.srsObjectIndustrialService = srsObjectIndustrialService;
     this.userManager = userManager;
 }
 public SRSObjectIndustrialController(
     ISRSObjectIndustrialService srsObjectIndustrialService,
     IDistrictsService districtService,
     IContainersService containerService,
     UserManager <ApplicationUser> userManager)
 {
     this.srsObjectIndustrialService = srsObjectIndustrialService;
     this.districtService            = districtService;
     this.containerService           = containerService;
     this.userManager = userManager;
 }
 public SRSObjectIndustrialController(ISRSObjectIndustrialService srsObjectIndustrialService)
 {
     this.srsObjectIndustrialService = srsObjectIndustrialService;
 }