public void DeleteServiceAllocations(int Id) { ServiceAllocations serviceAllocations = context.ServiceAllocations.Find(Id); context.ServiceAllocations.Remove(serviceAllocations); }
public void InsertServiceAllocations(ServiceAllocations serviceAllocations) { context.ServiceAllocations.Add(serviceAllocations); }