// private IMapper _mapper;

        // initiate database context
        public OvrAppController(OvrAppContext context)
        {
            _context = context;
        }
 // initiate database context
 public OvrAppController(OvrAppContext context,
                         IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }