public bool Insert(User_MODEL model) { using (EFDataContext dataContext = new EFDataContext()) { dataContext.User.Add(model); dataContext.SaveChanges(); return true; } }
public bool UpdateName(User_MODEL model) { throw new NotImplementedException(); }
public bool Delete(User_MODEL userModel) { throw new NotImplementedException(); }
public bool Insert(User_MODEL t) { return true; }