Exemplo n.º 1
0
        public List <atributesDTO> getAllAtribtuesForResource(string path)
        {
            var getAll = api.getAllAtribtuesForResource(path);
            List <atributesDTO> resDTO = new List <atributesDTO>();

            resDTO = iMapper.Map <List <atributes>, List <atributesDTO> >(getAll, resDTO);
            return(resDTO);
        }
Exemplo n.º 2
0
        public List <atributesDTO> getAllAtribtuesForResource(string path)
        {
            var getAll = api.getAllAtribtuesForResource(path);
            List <atributesDTO> resDTO = new List <atributesDTO>();

            for (var i = 0; i < getAll.Count; i++)
            {
                resDTO.Add(new atributesDTO());
                resDTO[i].description     = getAll[i].description;
                resDTO[i].Id              = getAll[i].Id;
                resDTO[i].name            = getAll[i].name;
                resDTO[i].resources_resID = getAll[i].resources_resID;
            }
            //resDTO = iMapper.Map<List<atributes>, List<atributesDTO>>(getAll, resDTO);
            return(resDTO);
        }