Ejemplo n.º 1
0
 public static void ClearProductNotify(int customerSysNo)
 {
     ProductNotifyDA.ClearProductNotify(customerSysNo);
 }
Ejemplo n.º 2
0
 public static void DeleteProductNotify(int sysNo, int customerSysNo)
 {
     ProductNotifyDA.DeleteProductNotify(sysNo, customerSysNo);
 }
Ejemplo n.º 3
0
 public static void UpdateProductNotify(int sysNo, int customerSysNo)
 {
     ProductNotifyDA.UpdateProductNotify(sysNo, customerSysNo);
 }
Ejemplo n.º 4
0
 public static int CreateProductNotify(ProductNotifyInfo info)
 {
     return(ProductNotifyDA.CreateProductNotify(info));
 }
Ejemplo n.º 5
0
 public static ProductNotifyInfo GetProductNotify(string email, int productSysNo)
 {
     return(ProductNotifyDA.GetProductNotify(email, productSysNo));
 }
Ejemplo n.º 6
0
 public static QueryResult <ProductNotifyInfo> QueryProductNotify(ProduceNotifiyQueryFilter filter)
 {
     return(ProductNotifyDA.QueryProductNotify(filter));
 }