public VenueViewModel( IWcfVenueManageService venueService, IWcfLayoutManageService layoutService, IWcfAreaManageService areaService, IWcfSeatManageService seatService, LayoutViewModel layoutViewModel) { _venueService = venueService; _layoutService = layoutService; _areaService = areaService; _seatService = seatService; _layoutViewModel = layoutViewModel; }
public SeatController(IWcfSeatManageService seatManagerService) { _seatManagerService = seatManagerService ?? throw new NullReferenceException(nameof(seatManagerService)); }