CartService.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
源码类别:

Ajax

开发平台:

C#

  1. /*
  2.  * MS 06-04-16 initial version
  3.  * 
  4.  * 
  5.  * 
  6.  * 
  7.  * 
  8.  */
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Text;
  12. namespace AjaxPro.Services
  13. {
  14. [AjaxNamespace("AjaxPro.Services.Cart")]
  15. public abstract class ICartService
  16. {
  17. [AjaxMethod]
  18. public abstract bool AddItem(string cartName, object item);
  19. [AjaxMethod]
  20. public abstract object[] GetItems(string cartName);
  21. }
  22. }