public async Task <AppointmentLogViewModel> Get(Guid id)
        {
            var para = new Dictionary <string, dynamic> {
                { "id", id }
            };
            var source = await _appointmentLog.SingleQuery(para);

            var dest = Mapper.Map <AppointmentLogViewModel>(source);

            return(dest);
        }