Esempio n. 1
0
        public async Task <IActionResult> GetLiveOut(Live_Surveyors live_Surveyor)
        {
            await _liveSurveyorService.LiveOutAsync(live_Surveyor);

            return(NotFound());
        }
Esempio n. 2
0
 public Task LiveOutAsync(Live_Surveyors live_Surveyor)
 {
     //_liveSurveyorRepository.ListAsync();
     //await _liveSurveyorRepository.DeleteAsync(live_Surveyor);
     throw new NotImplementedException();
 }
Esempio n. 3
0
        public async Task <IActionResult> GetLiveIn(Live_Surveyors live_Surveyor)
        {
            await _liveSurveyorService.LiveInAsync(live_Surveyor);

            return(Ok());
        }
Esempio n. 4
0
 public async Task <Live_Surveyors> LiveInAsync(Live_Surveyors live_Surveyor)
 {
     return(await _liveSurveyorRepository.AddAsync(live_Surveyor));
 }