コード例 #1
0
 public SaleController(ApplicationDBContext context)
 {
     _saleRepo = new SaleRepository(context);
     _appointmentSessionRepo = new AppointmentSessionRepository(context);
     _callSessionRepo        = new CallSessionRepository(context);
     _userProfileRepo        = new UserProfileRepository(context);
 }
コード例 #2
0
 public CallSessionController(ApplicationDBContext context)
 {
     _callSessionRepo = new CallSessionRepository(context);
     _userProfileRepo = new UserProfileRepository(context);
 }