public ReportGreigeWeavingPerMonthController(IIdentityService identityService, IValidateService validateService, IReportGreigeWeavingPerMonthService service)
 {
     IdentityService = identityService;
     ValidateService = validateService;
     Service         = service;
     ApiVersion      = "1.0.0";
 }
示例#2
0
 public ReportGreigeWeavingPerMonthController(IReportGreigeWeavingPerMonthService service, IServiceProvider serviceProvider)
 {
     this.service         = service;
     this.serviceProvider = serviceProvider;
     identityService      = (IdentityService)serviceProvider.GetService(typeof(IdentityService));
 }