Example #1
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";

            BookType BookType = new BookType();

            int flag = Convert.ToInt32(context.Request["flag"]);

            BookType.ID   = Convert.ToInt32(context.Request["ID"]);
            BookType.Name = context.Request["Name"];
            BookType.Day  = Convert.ToInt32(context.Request["Day"]);

            if (flag == 0)
            {
                DataTable GetBookType = BookTypeDAL.GetBookType();
                string    json        = Common.JsonHelper.DataSetToJson(GetBookType);
                context.Response.Write(json);
            }
            else if (flag == 1)
            {
                int Insert = BookTypeDAL.Insert(BookType);
                context.Response.Write(Insert);
            }
            else if (flag == 2)
            {
                int Update = BookTypeDAL.Update(BookType);
                context.Response.Write(Update);
            }
            else if (flag == 3)
            {
                int Delete = BookTypeDAL.Delete(BookType);
                context.Response.Write(Delete);
            }
        }
Example #2
0
 /// <summary>
 /// Find
 /// </summary>
 /// <returns>list</returns>
 public static List <BookType> Find()
 {
     try
     {
         return(BookTypeDAL.Find());
     }
     catch (Exception error)
     {
         throw error;
     }
 }