public static int UrunGuncelle(EntityUrun entityUrun) { if (entityUrun.UrunAd != "" && entityUrun.UrunFiyat > 0 && entityUrun.UrunAdet >= 0) { return(DALUrun.UrunGuncelle(entityUrun)); } return(-1); }
public static int BLLUrunEkle(EntityUrun urun) { if (urun.UrunAd != null) { return(DALUrun.UrunEkle(urun)); } return(-1); }
public static bool UrunSil(int?id) { if (id != null && id > 0) { return(DALUrun.UrunSil(id)); } return(false); }
public static EntityUrun UrunGetirById(int?id) { if (id != null && id > 0) { return(DALUrun.UrunGetirById(id)); } return(null); }
public static int BLLUrunEkle(EntityUrun p) { if (p.Urunad != "" && p.Urunfiyat != 0 && p.Urunadet != 0 && p.Urunfiyat >= 1) { return(DALUrun.UrunEkle(p)); } else { return(-1); } }
public static int BLLUrunEkle(EntityUrun m) { if (m.Urunad != "" && m.Urunfiyat != 0 & m.Urunadet != 0) { return(DALUrun.UrunEkle(m)); } else { return(-1); } }
public static string Duzenle(EUrun u) { if (u.SubCategoryID <= 0 || u.BrandID <= 0 || u.ProductName == "" || u.Price <= 0 || u.Stock < 0 || u.MasterPhotoPath == "") { return("Hatalı işlem"); } else { DALUrun.Duzenle(u); return("Düzenlendi..."); } }
public static string Sil(EUrun u) { if (u.ID > 0) { DALUrun.Sil(u); return("Silindi..."); } else { return("Hatalı işlem..."); } }
public static string Duzenle(EUrun u) { if (u.ID <= 0 || u.ProductName == "" || u.CategoryID == 0 || u.Price < 0) { return("Hatalı işlem..."); } else { DALUrun.Duzenle(u); return("Düzenlendi..."); } }
public static string Ekle(EUrun u) { if (u.ProductName != "" && u.SubCategoryID > 0 && u.BrandID > 0 && u.Price > 0 && u.Stock > 0 && u.MasterPhotoPath != "") { if (DALUrun.Ekle(u) > 0) { return("Eklendi..."); } else { return("Aynı ürün var, farklı bir isim giriniz..."); } } return("Hatalı işlem..."); }
public static string Ekle(EUrun urun) { if (urun.ProductName == "" || urun.CategoryID == 0 || urun.Price < 0) { return("Hatalı işlem..."); } else { if (DALUrun.Ekle(urun) > 0) { return("Eklendi..."); } else { return("Aynı kategoriden var, farklı bir isim giriniz..."); } } }
public static List <EntityUrun> BLLUrunListesi() { return(DALUrun.UrunListesi()); }
public static EUrun UrunBul(int urunID) { return(DALUrun.UrunBul(urunID)); }
public static List <EUrun> Listele() { return(DALUrun.Listele()); }
public static EUrun UrunBul(int id) { return(DALUrun.UrunBul(id)); }
public static string KategoriBul(EUrun item) { return(DALUrun.KategoriBul(item)); }
public static List <EUrun> Listele(int id) { return(DALUrun.Listele(id)); }