Example #1
0
 public void CreateTrained(RDTrained rdt)
 {
     if (rdt == null)
     {
         throw new ArgumentNullException(nameof(rdt));
     }
     _context.Add(rdt);
 }
Example #2
0
 public void DeleteECommerce(RDTrained rdt)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public void UpdateECommerce(RDTrained rdt, RDTrained rdtToUpdate)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public void UpdateTrained(RDTrained rdt, RDTrained rdtToUpdate)
 {
     _context.RDTraineds.Remove(rdt);
     _context.RDTraineds.Add(rdtToUpdate);
 }
Example #5
0
 public void DeleteTrained(RDTrained rdt)
 {
     _context.RDTraineds.Remove(rdt);
 }