Пример #1
0
        public IResult Delete(int id)
        {
            var value = _reservationDal.Get(x => x.Id == id);

            _reservationDal.Delete(value);
            return(new SuccessResult());
        }
Пример #2
0
 public Reservation Get(int entityId)
 {
     return(_reservationDal.Get());
 }