コード例 #1
0
 public DocTypeCard()
 {
     ID           = Guid.NewGuid();
     Name         = "";
     Caption      = "";
     TagWords     = "";
     RoleTypeID   = Guid.Empty;
     NewRoleCard  = Guid.Empty;;
     isEditingNow = false;
     RoleCard     = new RoleCard(RoleTypeID);
     HasValue     = true;
 }
コード例 #2
0
 public DocTypeCard(Guid id)
 {
     try
     {
         using (var con = new SqlConnection(SystemSingleton.Configuration.ConnectionString))
         {
             SystemSingleton.Configuration.SqlConnections.Add(con);
             using (var command = new SqlCommand(SqlCommands.LoadDocTypeCard, con))
             {
                 command.Parameters.Add("@ID", SqlDbType.UniqueIdentifier);
                 command.Parameters["@ID"].Value = id;
                 EnvironmentHelper.SendLogSQL(command.CommandText);
                 con.Open();
                 using (var reader = command.ExecuteReader())
                 {
                     if (reader.Read())
                     {
                         ID           = id;
                         Name         = reader.GetString(1);
                         Caption      = reader.GetString(2);
                         TagWords     = reader.GetString(3);
                         RoleTypeID   = reader.GetGuid(4);
                         NewRoleCard  = RoleTypeID;
                         isEditingNow = reader.GetBoolean(5);
                         HasValue     = true;
                         RoleCard     = new RoleCard(RoleTypeID);
                     }
                     else
                     {
                         EnvironmentHelper.SendDialogBox(
                             (string)SystemSingleton.Configuration.mainWindow.FindResource("m_UserNotFound") + "\n\n" + id.ToString(),
                             "Doc Type Error"
                             );
                         HasValue = false;
                     }
                 }
                 con.Close();
             }
         }
     }
     catch (Exception ex)
     {
         EnvironmentHelper.SendErrorDialogBox(ex.Message, "SQL Error", ex.StackTrace);
     }
 }