Exemplo n.º 1
0
 public VenueViewModel(
     IWcfVenueManageService venueService,
     IWcfLayoutManageService layoutService,
     IWcfAreaManageService areaService,
     IWcfSeatManageService seatService,
     LayoutViewModel layoutViewModel)
 {
     _venueService    = venueService;
     _layoutService   = layoutService;
     _areaService     = areaService;
     _seatService     = seatService;
     _layoutViewModel = layoutViewModel;
 }
Exemplo n.º 2
0
 public VenueController(IWcfVenueManageService venueManagementService)
 {
     _venueManagementService = venueManagementService ?? throw new ArgumentNullException(nameof(venueManagementService));
 }