Skip to content

Commit

Permalink
Fix naming in solution
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Jul 5, 2023
1 parent 5fbd842 commit 5eda1ee
Show file tree
Hide file tree
Showing 173 changed files with 10,157 additions and 10,157 deletions.
20 changes: 10 additions & 10 deletions src/net/Wexflow.Core.Db.Firebird/Approver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
{
public class Approver : Core.Db.Approver
{
public const string ColumnName_Id = "ID";
public const string ColumnName_UserId = "USER_ID";
public const string ColumnName_RecordId = "RECORD_ID";
public const string ColumnName_Approved = "APPROVED";
public const string ColumnName_ApprovedOn = "APPROVED_ON";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_USER_ID = "USER_ID";
public const string COLUMN_NAME_RECORD_ID = "RECORD_ID";
public const string COLUMN_NAME_APPROVED = "APPROVED";
public const string COLUMN_NAME_APPROVED_ON = "APPROVED_ON";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, "
+ ColumnName_UserId + " INTEGER, "
+ ColumnName_RecordId + " INTEGER, "
+ ColumnName_Approved + " BOOLEAN, "
+ ColumnName_ApprovedOn + " TIMESTAMP)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, "
+ COLUMN_NAME_USER_ID + " INTEGER, "
+ COLUMN_NAME_RECORD_ID + " INTEGER, "
+ COLUMN_NAME_APPROVED + " BOOLEAN, "
+ COLUMN_NAME_APPROVED_ON + " TIMESTAMP)";

public int Id { get; set; }

Expand Down
1,236 changes: 618 additions & 618 deletions src/net/Wexflow.Core.Db.Firebird/Db.cs

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions src/net/Wexflow.Core.Db.Firebird/Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
{
public class Entry : Core.Db.Entry
{
public const string ColumnName_Id = "ID";
public const string ColumnName_Name = "NAME";
public const string ColumnName_Description = "DESCRIPTION";
public const string ColumnName_LaunchType = "LAUNCH_TYPE";
public const string ColumnName_StatusDate = "STATUS_DATE";
public const string ColumnName_Status = "STATUS";
public const string ColumnName_WorkflowId = "WORKFLOW_ID";
public const string ColumnName_JobId = "JOB_ID";
public const string ColumnName_Logs = "LOGS";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_NAME = "NAME";
public const string COLUMN_NAME_DESCRIPTION = "DESCRIPTION";
public const string COLUMN_NAME_LAUNCH_TYPE = "LAUNCH_TYPE";
public const string COLUMN_NAME_STATUS_DATE = "STATUS_DATE";
public const string COLUMN_NAME_STATUS = "STATUS";
public const string COLUMN_NAME_WORKFLOW_ID = "WORKFLOW_ID";
public const string COLUMN_NAME_JOB_ID = "JOB_ID";
public const string COLUMN_NAME_LOGS = "LOGS";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_Name + " VARCHAR(255), " + ColumnName_Description + " VARCHAR(255), " + ColumnName_LaunchType + " INTEGER, " + ColumnName_StatusDate + " TIMESTAMP, " + ColumnName_Status + " INTEGER, " + ColumnName_WorkflowId + " INTEGER, " + ColumnName_JobId + " VARCHAR(255), " + ColumnName_Logs + " BLOB SUB_TYPE TEXT)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_NAME + " VARCHAR(255), " + COLUMN_NAME_DESCRIPTION + " VARCHAR(255), " + COLUMN_NAME_LAUNCH_TYPE + " INTEGER, " + COLUMN_NAME_STATUS_DATE + " TIMESTAMP, " + COLUMN_NAME_STATUS + " INTEGER, " + COLUMN_NAME_WORKFLOW_ID + " INTEGER, " + COLUMN_NAME_JOB_ID + " VARCHAR(255), " + COLUMN_NAME_LOGS + " BLOB SUB_TYPE TEXT)";

public int Id { get; set; }

Expand Down
18 changes: 9 additions & 9 deletions src/net/Wexflow.Core.Db.Firebird/HistoryEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
{
public class HistoryEntry : Core.Db.HistoryEntry
{
public const string ColumnName_Id = "ID";
public const string ColumnName_Name = "NAME";
public const string ColumnName_Description = "DESCRIPTION";
public const string ColumnName_LaunchType = "LAUNCH_TYPE";
public const string ColumnName_StatusDate = "STATUS_DATE";
public const string ColumnName_Status = "STATUS";
public const string ColumnName_WorkflowId = "WORKFLOW_ID";
public const string ColumnName_Logs = "LOGS";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_NAME = "NAME";
public const string COLUMN_NAME_DESCRIPTION = "DESCRIPTION";
public const string COLUMN_NAME_LAUNCH_TYPE = "LAUNCH_TYPE";
public const string COLUMN_NAME_STATUS_DATE = "STATUS_DATE";
public const string COLUMN_NAME_STATUS = "STATUS";
public const string COLUMN_NAME_WORKFLOW_ID = "WORKFLOW_ID";
public const string COLUMN_NAME_LOGS = "LOGS";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_Name + " VARCHAR(255), " + ColumnName_Description + " VARCHAR(255), " + ColumnName_LaunchType + " INTEGER, " + ColumnName_StatusDate + " TIMESTAMP, " + ColumnName_Status + " INTEGER, " + ColumnName_WorkflowId + " INTEGER, " + ColumnName_Logs + " BLOB SUB_TYPE TEXT)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_NAME + " VARCHAR(255), " + COLUMN_NAME_DESCRIPTION + " VARCHAR(255), " + COLUMN_NAME_LAUNCH_TYPE + " INTEGER, " + COLUMN_NAME_STATUS_DATE + " TIMESTAMP, " + COLUMN_NAME_STATUS + " INTEGER, " + COLUMN_NAME_WORKFLOW_ID + " INTEGER, " + COLUMN_NAME_LOGS + " BLOB SUB_TYPE TEXT)";

public int Id { get; set; }

Expand Down
24 changes: 12 additions & 12 deletions src/net/Wexflow.Core.Db.Firebird/Notification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
{
public class Notification : Core.Db.Notification
{
public const string ColumnName_Id = "ID";
public const string ColumnName_AssignedBy = "ASSIGNED_BY";
public const string ColumnName_AssignedOn = "ASSIGNED_ON";
public const string ColumnName_AssignedTo = "ASSIGNED_TO";
public const string ColumnName_Message = "MESSAGE";
public const string ColumnName_IsRead = "IS_READ";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_ASSIGNED_BY = "ASSIGNED_BY";
public const string COLUMN_NAME_ASSIGNED_ON = "ASSIGNED_ON";
public const string COLUMN_NAME_ASSIGNED_TO = "ASSIGNED_TO";
public const string COLUMN_NAME_MESSAGE = "MESSAGE";
public const string COLUMN_NAME_IS_READ = "IS_READ";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, "
+ ColumnName_AssignedBy + " INTEGER, "
+ ColumnName_AssignedOn + " TIMESTAMP, "
+ ColumnName_AssignedTo + " INTEGER, "
+ ColumnName_Message + " BLOB SUB_TYPE TEXT, "
+ ColumnName_IsRead + " BOOLEAN)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, "
+ COLUMN_NAME_ASSIGNED_BY + " INTEGER, "
+ COLUMN_NAME_ASSIGNED_ON + " TIMESTAMP, "
+ COLUMN_NAME_ASSIGNED_TO + " INTEGER, "
+ COLUMN_NAME_MESSAGE + " BLOB SUB_TYPE TEXT, "
+ COLUMN_NAME_IS_READ + " BOOLEAN)";

public int Id { get; set; }

Expand Down
56 changes: 28 additions & 28 deletions src/net/Wexflow.Core.Db.Firebird/Record.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,35 @@
{
public class Record : Core.Db.Record
{
public const string ColumnName_Id = "ID";
public const string ColumnName_Name = "NAME";
public const string ColumnName_Description = "DESCRIPTION";
public const string ColumnName_Approved = "APPROVED";
public const string ColumnName_StartDate = "START_DATE";
public const string ColumnName_EndDate = "END_DATE";
public const string ColumnName_Comments = "COMMENTS";
public const string ColumnName_ManagerComments = "MANAGER_COMMENTS";
public const string ColumnName_CreatedBy = "CREATED_BY";
public const string ColumnName_CreatedOn = "CREATED_ON";
public const string ColumnName_ModifiedBy = "MODIFIED_BY";
public const string ColumnName_ModifiedOn = "MODIFIED_ON";
public const string ColumnName_AssignedTo = "ASSIGNED_TO";
public const string ColumnName_AssignedOn = "ASSIGNED_ON";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_NAME = "NAME";
public const string COLUMN_NAME_DESCRIPTION = "DESCRIPTION";
public const string COLUMN_NAME_APPROVED = "APPROVED";
public const string COLUMN_NAME_START_DATE = "START_DATE";
public const string COLUMN_NAME_END_DATE = "END_DATE";
public const string COLUMN_NAME_COMMENTS = "COMMENTS";
public const string COLUMN_NAME_MANAGER_COMMENTS = "MANAGER_COMMENTS";
public const string COLUMN_NAME_CREATED_BY = "CREATED_BY";
public const string COLUMN_NAME_CREATED_ON = "CREATED_ON";
public const string COLUMN_NAME_MODIFIED_BY = "MODIFIED_BY";
public const string COLUMN_NAME_MODIFIED_ON = "MODIFIED_ON";
public const string COLUMN_NAME_ASSIGNED_TO = "ASSIGNED_TO";
public const string COLUMN_NAME_ASSIGNED_ON = "ASSIGNED_ON";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, "
+ ColumnName_Name + " VARCHAR(512), "
+ ColumnName_Description + " BLOB SUB_TYPE TEXT, "
+ ColumnName_Approved + " BOOLEAN, "
+ ColumnName_StartDate + " TIMESTAMP, "
+ ColumnName_EndDate + " TIMESTAMP, "
+ ColumnName_Comments + " BLOB SUB_TYPE TEXT, "
+ ColumnName_ManagerComments + " BLOB SUB_TYPE TEXT, "
+ ColumnName_CreatedBy + " INTEGER, "
+ ColumnName_CreatedOn + " TIMESTAMP, "
+ ColumnName_ModifiedBy + " INTEGER, "
+ ColumnName_ModifiedOn + " TIMESTAMP, "
+ ColumnName_AssignedTo + " INTEGER, "
+ ColumnName_AssignedOn + " TIMESTAMP)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, "
+ COLUMN_NAME_NAME + " VARCHAR(512), "
+ COLUMN_NAME_DESCRIPTION + " BLOB SUB_TYPE TEXT, "
+ COLUMN_NAME_APPROVED + " BOOLEAN, "
+ COLUMN_NAME_START_DATE + " TIMESTAMP, "
+ COLUMN_NAME_END_DATE + " TIMESTAMP, "
+ COLUMN_NAME_COMMENTS + " BLOB SUB_TYPE TEXT, "
+ COLUMN_NAME_MANAGER_COMMENTS + " BLOB SUB_TYPE TEXT, "
+ COLUMN_NAME_CREATED_BY + " INTEGER, "
+ COLUMN_NAME_CREATED_ON + " TIMESTAMP, "
+ COLUMN_NAME_MODIFIED_BY + " INTEGER, "
+ COLUMN_NAME_MODIFIED_ON + " TIMESTAMP, "
+ COLUMN_NAME_ASSIGNED_TO + " INTEGER, "
+ COLUMN_NAME_ASSIGNED_ON + " TIMESTAMP)";

public int Id { get; set; }

Expand Down
20 changes: 10 additions & 10 deletions src/net/Wexflow.Core.Db.Firebird/StatusCount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
{
public class StatusCount : Core.Db.StatusCount
{
public const string ColumnName_Id = "ID";
public const string ColumnName_PendingCount = "PENDING_COUNT";
public const string ColumnName_RunningCount = "RUNNING_COUNT";
public const string ColumnName_DoneCount = "DONE_COUNT";
public const string ColumnName_FailedCount = "FAILED_COUNT";
public const string ColumnName_WarningCount = "WARNING_COUNT";
public const string ColumnName_DisabledCount = "DISABLED_COUNT";
public const string ColumnName_StoppedCount = "STOPPED_COUNT";
public const string ColumnName_RejectedCount = "DISAPPROVED_COUNT";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_PENDING_COUNT = "PENDING_COUNT";
public const string COLUMN_NAME_RUNNING_COUNT = "RUNNING_COUNT";
public const string COLUMN_NAME_DONE_COUNT = "DONE_COUNT";
public const string COLUMN_NAME_FAILED_COUNT = "FAILED_COUNT";
public const string COLUMN_NAME_WARNING_COUNT = "WARNING_COUNT";
public const string COLUMN_NAME_DISABLED_COUNT = "DISABLED_COUNT";
public const string COLUMN_NAME_STOPPED_COUNT = "STOPPED_COUNT";
public const string COLUMN_NAME_REJECTED_COUNT = "DISAPPROVED_COUNT";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_PendingCount + " INTEGER, " + ColumnName_RunningCount + " INTEGER, " + ColumnName_DoneCount + " INTEGER, " + ColumnName_FailedCount + " INTEGER, " + ColumnName_WarningCount + " INTEGER, " + ColumnName_DisabledCount + " INTEGER, " + ColumnName_StoppedCount + " INTEGER, " + ColumnName_RejectedCount + " INTEGER)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_PENDING_COUNT + " INTEGER, " + COLUMN_NAME_RUNNING_COUNT + " INTEGER, " + COLUMN_NAME_DONE_COUNT + " INTEGER, " + COLUMN_NAME_FAILED_COUNT + " INTEGER, " + COLUMN_NAME_WARNING_COUNT + " INTEGER, " + COLUMN_NAME_DISABLED_COUNT + " INTEGER, " + COLUMN_NAME_STOPPED_COUNT + " INTEGER, " + COLUMN_NAME_REJECTED_COUNT + " INTEGER)";

public int Id { get; set; }
}
Expand Down
16 changes: 8 additions & 8 deletions src/net/Wexflow.Core.Db.Firebird/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
{
public class User : Core.Db.User
{
public const string ColumnName_Id = "ID";
public const string ColumnName_Username = "USERNAME";
public const string ColumnName_Password = "PASSWORD";
public const string ColumnName_UserProfile = "USER_PROFILE";
public const string ColumnName_Email = "EMAIL";
public const string ColumnName_CreatedOn = "CREATED_ON";
public const string ColumnName_ModifiedOn = "MODIFIED_ON";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_USERNAME = "USERNAME";
public const string COLUMN_NAME_PASSWORD = "PASSWORD";
public const string COLUMN_NAME_USER_PROFILE = "USER_PROFILE";
public const string COLUMN_NAME_EMAIL = "EMAIL";
public const string COLUMN_NAME_CREATED_ON = "CREATED_ON";
public const string COLUMN_NAME_MODIFIED_ON = "MODIFIED_ON";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_Username + " VARCHAR(255), " + ColumnName_Password + " VARCHAR(255), " + ColumnName_UserProfile + " INTEGER, " + ColumnName_Email + " VARCHAR(255), " + ColumnName_CreatedOn + " TIMESTAMP, " + ColumnName_ModifiedOn + " TIMESTAMP)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_USERNAME + " VARCHAR(255), " + COLUMN_NAME_PASSWORD + " VARCHAR(255), " + COLUMN_NAME_USER_PROFILE + " INTEGER, " + COLUMN_NAME_EMAIL + " VARCHAR(255), " + COLUMN_NAME_CREATED_ON + " TIMESTAMP, " + COLUMN_NAME_MODIFIED_ON + " TIMESTAMP)";

public int Id { get; set; }

Expand Down
8 changes: 4 additions & 4 deletions src/net/Wexflow.Core.Db.Firebird/UserWorkflow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
{
public class UserWorkflow : Core.Db.UserWorkflow
{
public const string ColumnName_Id = "ID";
public const string ColumnName_UserId = "USER_ID";
public const string ColumnName_WorkflowId = "WORKFLOW_ID";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_USER_ID = "USER_ID";
public const string COLUMN_NAME_WORKFLOW_ID = "WORKFLOW_ID";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_UserId + " INTEGER, " + ColumnName_WorkflowId + " INTEGER)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_USER_ID + " INTEGER, " + COLUMN_NAME_WORKFLOW_ID + " INTEGER)";

public string Id { get; set; }
}
Expand Down
16 changes: 8 additions & 8 deletions src/net/Wexflow.Core.Db.Firebird/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
{
public class Version : Core.Db.Version
{
public const string ColumnName_Id = "ID";
public const string ColumnName_RecordId = "RECORD_ID";
public const string ColumnName_FilePath = "FILE_PATH";
public const string ColumnName_CreatedOn = "CREATED_ON";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_RECORD_ID = "RECORD_ID";
public const string COLUMN_NAME_FILE_PATH = "FILE_PATH";
public const string COLUMN_NAME_CREATED_ON = "CREATED_ON";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, "
+ ColumnName_RecordId + " INTEGER, "
+ ColumnName_FilePath + " VARCHAR(1024), "
+ ColumnName_CreatedOn + " TIMESTAMP)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, "
+ COLUMN_NAME_RECORD_ID + " INTEGER, "
+ COLUMN_NAME_FILE_PATH + " VARCHAR(1024), "
+ COLUMN_NAME_CREATED_ON + " TIMESTAMP)";

public int Id { get; set; }

Expand Down
6 changes: 3 additions & 3 deletions src/net/Wexflow.Core.Db.Firebird/Workflow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
{
public class Workflow : Core.Db.Workflow
{
public const string ColumnName_Id = "ID";
public const string ColumnName_Xml = "XML";
public const string COLUMN_NAME_ID = "ID";
public const string COLUMN_NAME_XML = "XML";

public const string TableStruct = "(" + ColumnName_Id + " integer generated by default as identity primary key, " + ColumnName_Xml + " BLOB SUB_TYPE TEXT)";
public const string TableStruct = "(" + COLUMN_NAME_ID + " integer generated by default as identity primary key, " + COLUMN_NAME_XML + " BLOB SUB_TYPE TEXT)";

public int Id { get; set; }

Expand Down
Loading

0 comments on commit 5eda1ee

Please sign in to comment.