示例#1
0
        public async Task <GroceryListModel> GetGroceryListByID(string ID)
        {
            var response = await _groceryListRepository.GetGroceryListByID(ID);

            return(_groceryListMapper.GroceryListDBToGroceryListModel(response));
        }