예제 #1
0
            public BroadcastMessageRow AddBroadcastMessageRow(int ApplicationTypeId, int ChannelId, int AuthorizationUserId, System.DateTime StartDate, System.DateTime EndDate, System.DateTime CreateDate, string Value, string Login, string FirstName, string MiddleName, string LastName, string EmailAddress)
            {
                BroadcastMessageRow rowBroadcastMessageRow = ((BroadcastMessageRow)(this.NewRow()));

                rowBroadcastMessageRow.ItemArray = new object[] {
                    null,
                    ApplicationTypeId,
                    ChannelId,
                    AuthorizationUserId,
                    StartDate,
                    EndDate,
                    CreateDate,
                    Value,
                    Login,
                    FirstName,
                    MiddleName,
                    LastName,
                    EmailAddress
                };
                this.Rows.Add(rowBroadcastMessageRow);
                return(rowBroadcastMessageRow);
            }
예제 #2
0
 public BroadcastMessageRowChangeEvent(BroadcastMessageRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveBroadcastMessageRow(BroadcastMessageRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddBroadcastMessageRow(BroadcastMessageRow row)
 {
     this.Rows.Add(row);
 }