Example #1
0
 public Interaction(InteractionDbType type, DbTable table, int initiatorAccountId)
 {
     InteractionType    = InteractionType.DB;
     InteractionDbType  = type;
     Table              = table;
     InitiatorAccountId = initiatorAccountId;
 }
Example #2
0
 public static string ToName(this InteractionDbType interactionDbType)
 {
     return(INTERACTION_DB_TYPES[interactionDbType]);
 }
 public PermissionDbModel(InteractionDbType interactionDbType, DbTable table) : base(InteractionType.DB)
 {
     InteractionDbType = interactionDbType;
     DbTable           = table;
 }