Esempio n. 1
0
 public PlaceLogic(ObjectContextEntities context, ICourtLogic courtLogic, ICourtBookLogic bookService, IFileLogic fileService, ILocationLogic locationService, UserAuthentication authentication)
 {
     _bookService = bookService;
     _fileService = fileService;
     _locationService = locationService;
     _authentication = authentication;
     _context = context;
     _courtLogic = courtLogic;
 }
Esempio n. 2
0
 public PlaceService(IPlaceLogic placeLogic, ICourtLogic courtLogic)
 {
     _placeLogic = placeLogic;
     _courtLogic = courtLogic;
 }