public async Task add_hotDog_To_Db()
        {
            //Arange
            HotDog hotDog = new HotDog()
            {
                Name = "£agodny", Phone = 666746759, SauceId = 2
            };
            IRepo repo = new Repos();
            //Act
            var hotDogInDb = await repo.AddAsync(hotDog);

            //Assert
            Assert.Equal(hotDogInDb, hotDog);
        }