public void CreateOutlet(outlet ot) { if (ot == null) { throw new ArgumentNullException(nameof(ot)); } _context.outlets.Add(ot); }
public void DeleteOutlet(outlet ot) { if (ot == null) { throw new ArgumentNullException(nameof(ot)); } _context.outlets.Remove(ot); }
public void UpdateOutlet(outlet ot) { //Nothing }
public void CreateOutlet(outlet ot) { throw new NotImplementedException(); }