コード例 #1
0
 public RentUpdateService(IRentDataAccess rentDataAccess, ICompanyGetService companyGetService,
                          ICarGetService carGetService)
 {
     RentDataAccess    = rentDataAccess;
     CarGetService     = carGetService;
     CompanyGetService = companyGetService;
 }
コード例 #2
0
 public RentGetService(IRentDataAccess companyDataAccess)
 {
     this.RentDataAccess = companyDataAccess;
 }