public ReservationAppService(IResevationRepositorycs appService, IClientRepository clientRepo)
 {
     _reservationApp   = appService;
     _clientRepository = clientRepo;
 }
 public ReservationController(IResevationRepositorycs resevationRepository)
 {
     _resevationRepository = resevationRepository;
 }