예제 #1
0
 public static E_Sube SubeBilgiGoster(int ID)
 {
     if (ID > 0)
     {
         return(F_Sube.SubeBilgiGoster(ID));
     }
     else
     {
         return(null);
     }
 }
예제 #2
0
 public static int SubeGuncelle(E_Sube sube)
 {
     if (
         !String.IsNullOrEmpty(sube.Eposta) &&
         !String.IsNullOrEmpty(sube.Sifre) &&
         !String.IsNullOrEmpty(sube.Ad) &&
         !String.IsNullOrEmpty(sube.Sehir) &&
         !String.IsNullOrEmpty(sube.Ilce) &&
         !String.IsNullOrEmpty(sube.Semt) &&
         !String.IsNullOrEmpty(sube.Telefon) &&
         !String.IsNullOrEmpty(sube.Adres)
         )
     {
         return(F_Sube.SubeGuncelle(sube));
     }
     return(-1);
 }
예제 #3
0
 public static DataTable SubeMesajGoster(int SubeID)
 {
     return(F_Sube.SubeMesajGoster(SubeID));
 }
예제 #4
0
 public static DataTable SubeTumKiralamalar(int SubeID)
 {
     return(F_Sube.SubeTumKiralamalar(SubeID));
 }
예제 #5
0
 public static DataTable SubeKiralamaGoster(int SubeID)
 {
     return(F_Sube.SubeKiralamaGoster(SubeID));
 }
예제 #6
0
 public static E_Sube SubeIDGetir(string Eposta, String Sifre)
 {
     return(F_Sube.SubeIDGetir(Eposta, Sifre));
 }
예제 #7
0
 public static DataTable SubeAra(string kelime)
 {
     return(F_Sube.SubeAra(kelime));
 }
예제 #8
0
 public static DataTable TumSubeler()
 {
     return(F_Sube.TumSubeler());
 }
예제 #9
0
 public static List <E_Sube> SubeListe()
 {
     return(F_Sube.SubeListe());
 }