Ejemplo n.º 1
0
 public DataTable GetAddressById(int ID)
 {
     //return BuyerAddressDAL.GetAddressByID(ID);
     return(BuyerAddressDAL.spGetAddressByID(ID));
 }
Ejemplo n.º 2
0
 public void UpdateBuyerAddress(String Address, String City, String Phone, String Street, int BuyerContactID)
 {
     //BuyerAddressDAL.UpdateBuyerAddress(Address, City, Phone, Street, BuyerContactID);
     BuyerAddressDAL.spUpdateBuyerAddress(Address, City, Phone, Street, BuyerContactID);
 }
Ejemplo n.º 3
0
 public void AddBuyerAddress(String Address, String City, String Phone, String Street, int BuyerMasterID)
 {
     //BuyerAddressDAL.AddBuyerAddress(Address, City, Phone, Street, BuyerMasterID);
     BuyerAddressDAL.spAddBuyerAddress(Address, City, Phone, Street, BuyerMasterID);
 }
Ejemplo n.º 4
0
 public void DeleteBuyerAddress(int ID)
 {
     //BuyerAddressDAL.DeleteBuyerAddress(ID);
     BuyerAddressDAL.spDeleteBuyerAddress(ID);
 }
Ejemplo n.º 5
0
 public DataTable GetBuyerAddress()
 {
     //return BuyerAddressDAL.GetBuyerAddress();
     return(BuyerAddressDAL.spGetBuyerAddress());
 }