예제 #1
0
 public CompanyProfileService(IUserAuthenticationStore userAuthenticationStore, ICompanyProfileStore companyProfileStore, ICarWashStore carWashStore, ICarWashServiceStore carWashServiceStore)
 {
     this.userAuthenticationStore = userAuthenticationStore;
     this.companyProfileStore     = companyProfileStore;
     this.carWashStore            = carWashStore;
     this.carWashServiceStore     = carWashServiceStore;
 }
 public ClientProfileService(IUserAuthenticationStore userAuthenticationStore, IClientProfileStore clientProfileStore, ICarStore carStore)
 {
     this.userAuthenticationStore = userAuthenticationStore;
     this.clientProfileStore      = clientProfileStore;
     this.carStore = carStore;
 }
 public UserAuthenticationService(IUserAuthenticationStore userAuthenticationStore)
 {
     this.userAuthenticationStore = userAuthenticationStore;
 }