Esempio n. 1
0
        public static void SetStempel(int?Pid)
        {
            //int? status = 0;
            //switch (Pid)
            //{
            //    case 0:
            //        status = 1;
            //       break;
            //    case 1:
            //        status = 0;
            //        break;
            //    default:

            //        break;
            //}
            TR_SQL_Commands.CallStoredProcedure("Update_Stamp_ByPId",
                                                new List <object>()
            {
                Pid
            },
                                                new List <string>()
            {
                "Pid"
            });
        }
Esempio n. 2
0
 public ClientSession(string _Kurzzeichen, string _Session)
 {
     TR_SQL_Commands.CallStoredProcedure("Insert_Session",
                                         new List <object>()
     {
         _Kurzzeichen,
         _Session
     },
                                         new List <string>()
     {
         "Kurzzeichen",
         "SessionName"
     });
 }