public bool Delete(Ban ban) { return(_banDal.Delete(ban)); }
public void Delete(int banId) { _banDal.Delete(new Ban { Id = banId }); }