示例#1
0
        public async Task <string> UpdateOverTime(int id, OverTime overTime)
        {
            try
            {
                var res = await _repository.UpdateOverTimes(id, overTime);

                return(res);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }