示例#1
0
 public FileController(IWebApiContentService mainService,
                       ICustomerFileService customerFileService)
     : base(mainService)
 {
     this.customerFileService = customerFileService;
 }
 public CustomerApiController(ICustomerFileService customerFileService, IAccountService accountService)
 {
     _CustomerFileService = customerFileService;
     _AccountService = accountService;
 }