public bool Delete(T itemToDelete) { dbContext.Remove <T>(itemToDelete); dbContext.SaveChanges(); return(true); }