예제 #1
0
 public ListingController(IEscortTypeService escortTypeService,
                          IServiceService serviceService,
                          IEscortService escortService,
                          ICityService cityService)
 {
     this.escortTypeService = escortTypeService;
     this.serviceService    = serviceService;
     this.escortService     = escortService;
     this.cityService       = cityService;
 }
예제 #2
0
 public GuestController()
 {
     _guestService         = new GuestService();
     _personService        = new PersonService();
     _movieService         = new MovieService();
     _posItemService       = new POSItemService();
     _taxiService          = new TaxiService();
     _adventureService     = new AdventureService();
     _movieCategoryService = new MovieCategoryService();
     _guestPlaylistService = new GuestPlaylistService();
     _escortService        = new EscortService();
 }