Esempio n. 1
0
 public bool Edit(InternalInvestment obj)
 {
     try
     {
         _context.InternalInvestment.Update(obj);
         _context.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Esempio n. 2
0
 public bool Create(InternalInvestment obj)
 {
     try
     {
         obj.Id = Guid.Empty;
         _context.Entry(obj).State = EntityState.Modified;
         _context.InternalInvestment.Add(obj);
         _context.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }