public void Edito(Klubi g) { try { KlubiDAL dal = new KlubiDAL(); dal.Update(g); } catch (Exception) { throw; } }
public void Regjistro(Klubi g) { try { KlubiDAL dal = new KlubiDAL(); dal.Shto(g); } catch (Exception ex) { throw ex; } }
public DataTable ShfaqListenEKlubeve() { try { KlubiDAL dal = new KlubiDAL(); var r = dal.GetAll(); return(r); } catch (Exception ex) { throw ex; } }
public int Fshij(Klubi g) { try { KlubiDAL dal = new KlubiDAL(); dal.FshijMeID(g); int rowsAffected = g.KlubiID; return(rowsAffected); } catch (Exception ex) { throw ex; } }