public async Task Test_Get_All_Customers()
        {
            using (var client = new CustomerContollerTest().Client)
            {
                var response = await client.GetAsync("/api/customers");

                response.EnsureSuccessStatusCode();

                response.StatusCode.Should().Be(HttpStatusCode.OK);
            }
        }