public string Delete(int id) { var data = ProductVM.Remove(UnitOfWork, id); if (data) { return("Data Saved"); } else { return("There is error"); } }