public async Task <string> DeleteOverTime(int id) { try { var res = await _repository.DeleteOverTimes(id); return(res); } catch (Exception ex) { throw ex; } }