コード例 #1
0
 public BookServiceController(IUserManagementService userManager,
                              IBookingContactRepository contactRepo,
                              IOrganizationUserRepository orgUser,
                              ISecurityRepository securityRepo)
 {
     _contactRepository  = contactRepo;
     _orgUser            = orgUser;
     _securityRepository = securityRepo;
 }
コード例 #2
0
 public SalePersonPageController(IBookingContactRepository contactRepo)
 {
     _contactRepo = contactRepo;
 }
コード例 #3
0
 public WorkshopPageController(IBookingContactRepository contactRepo)
 {
     _contactRepo = contactRepo;
 }