Exemplo n.º 1
0
        public IEnumerable <AvbItemDto> GetItems(string itemTypeName)
        {
            IAvbRequestFormService avbRequestFormService = new AvbRequestFormService();

            return(avbRequestFormService.getItem(itemTypeName));
        }
Exemplo n.º 2
0
        public IEnumerable <AvbItemTypeDto> GetItemTypes()
        {
            IAvbRequestFormService avbRequestFormService = new AvbRequestFormService();

            return(avbRequestFormService.getItemType());
        }
Exemplo n.º 3
0
        public IEnumerable <AvbItemDto> GetItems(int itemTypeId)
        {
            IAvbRequestFormService avbRequestFormService = new AvbRequestFormService();

            return(avbRequestFormService.getItem(itemTypeId));
        }