Beispiel #1
0
        public IResult Update(int id)
        {
            var model = _rezervasyon.Get(x => x.Id == id);

            model.IsDeleted = true;
            _rezervasyon.Update(model);
            return(new SuccessResult(Messages.Updated));
        }
 public void Update(Rezervasyon entity)
 {
     _rezervasyonDal.Update(entity);
 }