Пример #1
0
 public AdminBookingController(ITypeRoomSevice typeRoomSevice, IBookingSevice bookingSevice, ILoggingService loggingService, IUnitOfWorkManager unitOfWorkManager, IMembershipService membershipService, ISettingsService settingsService, ILocalizationService localizationService)
     : base(loggingService, unitOfWorkManager, membershipService, settingsService, localizationService)
 {
     _bookingSevice  = bookingSevice;
     _typeRoomSevice = typeRoomSevice;
 }
Пример #2
0
 public AdminBookingController() : base()
 {
     _bookingSevice  = ServiceFactory.Get <IBookingSevice>();
     _typeRoomSevice = ServiceFactory.Get <ITypeRoomSevice>();
 }