public bool Delete(int id) { try { _itemDal.Delete(_itemDal.GetById(id)); } catch { return(false); } return(true); }
internal bool Delete(int id) { status = itemDal.Delete(id); return(status); }