Exemple #1
0
        public async Task <CandidateTimesheetHoursViewModel> UpdateCandidateTimesheetHours(CandidateTimesheetHoursViewModel data)
        {
            try
            {
                await Task.Run(() => ManageCandidateTimesheetHours.UpdateCandidateTimesheetHours(data.ConvertTotblCandidateTimesheetHour()));

                return(data);
            }
            catch (Exception)
            {
                throw;
            }
        }
Exemple #2
0
        public async Task <CandidateTimesheetHoursViewModel> CreateCandidateTimesheetHours(CandidateTimesheetHoursViewModel data)
        {
            try
            {
                tblCandidateTimesheetHour res = await Task.Run(() => ManageCandidateTimesheetHours.InsertCandidateTimesheetHours(data.ConvertTotblCandidateTimesheetHour()));

                return(res.ConvertToCandidateTimesheetHoursViewModel());
            }
            catch (Exception)
            {
                throw;
            }
        }