Exemplo n.º 1
0
 public IList <IPurchaseHeaderView> AllPurchaseHeaderBySpecifiedType(int?type)
 {
     return(QuattroDataFactory.AllPurchasHeaderBySpecifiedtype(type));
 }
Exemplo n.º 2
0
 public IList <IPurchaseItem> AllPurchaseItemsByHeaderPrimaryKey(int primaryKey)
 {
     return(QuattroDataFactory.AllPurchaseHeaderByHeaderKey(primaryKey));
 }
Exemplo n.º 3
0
 public IPurchaseHeaderView QuattroPurchaseByPrimaryKey(int primaryKey)
 {
     return(QuattroDataFactory.GetPurchaseHeaderByPrimaryKey(primaryKey));
 }
Exemplo n.º 4
0
 public IList <IPurchaseHeaderView> AllPurchaseHeader()
 {
     return(QuattroDataFactory.AllPurchaseHeader());
 }
Exemplo n.º 5
0
 public void DeletePurchaseHeader(IPurchaseHeaderView view)
 {
     QuattroDataFactory.DeletePurchaseHeader(view);
 }
Exemplo n.º 6
0
 public void DeletePurchaseItem(IPurchaseItem item)
 {
     QuattroDataFactory.DeletePurchaseItem(item);
 }
Exemplo n.º 7
0
 public void AddPurchaseHeader(IPurchaseHeaderView view)
 {
     QuattroDataFactory.AddPurchaseHeader(view);
 }
Exemplo n.º 8
0
 public void UpdateHeaderSales(ISalesHeaderView view)
 {
     QuattroDataFactory.UpdateSalesHeader(view);
 }
Exemplo n.º 9
0
 public IList <ISalesHeaderView> BySpecifiedType(int?type)
 {
     return(QuattroDataFactory.BySpecifiedType(type));
 }
Exemplo n.º 10
0
 public IList <ISalesItem> AllSalesItemsBySalesHeader(int primaryKey)
 {
     return(QuattroDataFactory.AllSalesItemsByHeaderKey(primaryKey));
 }
Exemplo n.º 11
0
 public IList <ISalesHeaderView> AllSales()
 {
     return(QuattroDataFactory.AllSalesHeader());
 }
Exemplo n.º 12
0
 public ISalesHeaderView QuattroSalesByPrimaryKey(int primaryKey)
 {
     return(QuattroDataFactory.LoadBySalesHeader(primaryKey));
 }
Exemplo n.º 13
0
 public void AddSalesPosition(ISalesItem item)
 {
     QuattroDataFactory.AddPosition(item);
 }
Exemplo n.º 14
0
 public void DeleteSalesHeader(ISalesHeaderView view)
 {
     QuattroDataFactory.DeleteHeader(view);
 }
Exemplo n.º 15
0
 public void AddPuchaseItem(IPurchaseItem item)
 {
     QuattroDataFactory.AddPurchaseItem(item);
 }
Exemplo n.º 16
0
 public void DeleteSalesPosition(ISalesItem item)
 {
     QuattroDataFactory.DeleteSalesItem(item);
 }
Exemplo n.º 17
0
 public void AddHeaderSales(ISalesHeaderView view)
 {
     QuattroDataFactory.AddSalesHeader(view);
 }