コード例 #1
0
 public DefaultBookingService(
     UppsalaApiContext context,
     IDateLogicService dateLogicService,
     UserManager <UserEntity> userManager)
 {
     _context          = context;
     _dateLogicService = dateLogicService;
     _userManager      = userManager;
 }
コード例 #2
0
 public DefaultOpeningService(UppsalaApiContext context, IDateLogicService dateLogicService)
 {
     _context          = context;
     _dateLogicService = dateLogicService;
 }
コード例 #3
0
 public DefaultRoomService(UppsalaApiContext context)
 {
     _context = context;
 }