public async Task <string> UpdateOverTime(int id, OverTime overTime) { try { var res = await _repository.UpdateOverTimes(id, overTime); return(res); } catch (Exception ex) { throw ex; } }