Пример #1
0
        public IEnumerable<Address> RetreiveByCustomerId(int customerId)
        {
            //returns a list of all addresses for a particular customer
            var addressList = new List<Address>();
            Address address = new Address(1)
            {
                AddressType = 1,
                StreetLine1 = "xxx",
                StreetLine2 = "xxx",
                City = "xxx",
                StateProvince = "xxx",
                PostCode = "xxx",
                Country = "xxx"
            };
            addressList.Add(address);

            address = new Address(2)
            {
                AddressType = 2,
                StreetLine1 = "xxx",
                StreetLine2 = "xxx",
                City = "xxx",
                StateProvince = "xxx",
                PostCode = "xxx",
                Country = "xxx"
            };
            addressList.Add(address);

            return addressList;
        }
Пример #2
0
        public Address Retreive(int addressId)
        {
            //code that retreives the defined customer
            Address address = new Address(addressId);

            if (addressId == 1)
            {
                address.StreetLine1 = "xxx";
                address.StreetLine2 = "xxx";
                address.City = "xxx";
                address.StateProvince = "xxx";
                address.PostCode = "xxx";
                address.Country = "xxx";
            }

            return address;
        }
Пример #3
0
        public bool Save(Address address)
        {
            //code that saves the defined customer
            var success = true;

            if (address.HasChanges && address.IsValid)
            {
                if (address.IsNew)
                {
                    //call an insert stored procedure
                }
                else
                {
                    //call an update stored procedure
                }
            }
            return success;
        }
        public void RetreiveExisting()
        {
            //Arrange
            var addressRepository = new AddressRepository();
            var expected = new Address(1)
            {
                AddressType = 0,
                StreetLine1 = "xxx",
                StreetLine2 = "xxx",
                City = "xxx",
                StateProvince = "xxx",
                PostCode = "xxx",
                Country = "xxx"
            };

            //Act
            var actual = addressRepository.Retreive(1);

            //Assert
            Assert.AreEqual(expected.AddressId, actual.AddressId);
            Assert.AreEqual(expected.StreetLine1, actual.StreetLine1);
        }