Esempio n. 1
0
        public IActionResult GetSpacesByAllocationManager(int id)
        {
            var spaces = _spaceService.GetSpacesByAllocationManager(id);
            var model  = _mapper.Map <IList <Space> >(spaces);

            return(Ok(model));
        }