Exemplo n.º 1
0
 public bool InsertRetailerType(retailer_type objRetailerType, long created_by)
 {
     try
     {
         _entities.retailer_type.Add(objRetailerType);
         _entities.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 public bool DeleteRetailerType(long ratailer_type_id, long updated_by)
 {
     try
     {
         retailer_type objRetailerType = _entities.retailer_type.FirstOrDefault(k => k.retailer_type_id == ratailer_type_id);
         _entities.retailer_type.Attach(objRetailerType);
         _entities.retailer_type.Remove(objRetailerType);
         _entities.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Exemplo n.º 3
0
 public bool UpdateRetailerType(retailer_type objRetailerType, long updated_by)
 {
     try
     {
         retailer_type con = _entities.retailer_type.Find(objRetailerType.retailer_type_id);
         con.retailer_type_name   = objRetailerType.retailer_type_name;
         con.retailer_type_prefix = objRetailerType.retailer_type_prefix;
         con.credit_limit         = objRetailerType.credit_limit;
         con.updated_by           = updated_by;
         con.updated_date         = DateTime.Now;
         con.is_active            = objRetailerType.is_active;
         con.is_deleted           = objRetailerType.is_deleted = false;
         _entities.SaveChanges();
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }