Exemple #1
0
 public string Delete(int entityId)
 {
     try
     {
         if (entityId < 1)
         {
             return("Hatalı Tedarikçi Bilgisi");
         }
         return(supplierDal.Delete(entityId));
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }
Exemple #2
0
        public bool Delete(Supplier supplier)
        {
            bool isDelete = _supplier.Delete(supplier);

            return(isDelete);
        }
Exemple #3
0
 internal bool Delete(int id)
 {
     status = _supplierDal.Delete(id);
     return(status);
 }