Example #1
0
        public BarberViewModel GetById(int id)
        {
            BarberModel model = _barberService.GetById(id);

            return(_mapper.Map <BarberViewModel>(model));
        }