public async Task <bool> AddCheckInAsync(Entities.CheckIn checkin)
 {
     return(await _checkInRepository.AddAsync(checkin));
 }
 public async Task <bool> UpdateCheckInAsync(Entities.CheckIn checkin)
 {
     return(await _checkInRepository.UpdateAsync(checkin));
 }
 public async Task<bool> UpdateCheckInAsync([FromBody] Entities.CheckIn checkIn)
 {
     return await _checkInService.UpdateCheckInAsync(checkIn);
 }