public DTO.Paged.PagedBillingAddress getAllBillingAddressByUserID(int UserID, int skip, int take)
 {
     return(Mapper.Map <DTO.Paged.PagedBillingAddress>(_billingAddress.getAllBillingAddressByUserID(UserID, skip, take)));
 }
        public void getAllBillingAddressByUserID()
        {
            var _result = _billingAddressBL.getAllBillingAddressByUserID(1, 0, 10);

            Assert.IsTrue(_result != null, "Unable to get");
        }