예제 #1
0
        public static List <Address> GetAllAddresssBL()
        {
            List <Address> AddressList = null;

            try
            {
                AddressDAL AddressDAL = new AddressDAL();
                AddressList = AddressDAL.GetAllAddressDAL();
            }
            catch (AddressException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(AddressList);
        }