public async Task <bool> Add(ItemVM items) { Item dbItem = mapper.Map <Item>(items); return(await itemRepo.AddItem(dbItem)); }