public vtype deletec(int id) { vtype a = context.vtype.Find(id); if (a != null) { context.vtype.Remove(a); context.SaveChanges(); } return(a); }
public vtype Getv(int id) { vtype a = context.vtype.Where(i => i.vtypeId == id).FirstOrDefault(); return(a); }
public vtype Add(vtype v) { context.vtype.Add(v); context.SaveChanges(); return(v); }