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; }
public AdminBookingController() : base() { _bookingSevice = ServiceFactory.Get <IBookingSevice>(); _typeRoomSevice = ServiceFactory.Get <ITypeRoomSevice>(); }