예제 #1
0
 public SaleController(ApplicationDBContext context)
 {
     _saleRepo = new SaleRepository(context);
     _appointmentSessionRepo = new AppointmentSessionRepository(context);
     _callSessionRepo        = new CallSessionRepository(context);
     _userProfileRepo        = new UserProfileRepository(context);
 }