コード例 #1
0
 /// <summary>
 /// Determines whether the specified <see cref="ListDynamicColumnInstanceRequest" /> is equal to this instance.
 /// </summary>
 /// <param name="other">The other.</param>
 /// <returns></returns>
 public bool Equals(ListDynamicColumnInstanceRequest other)
 {
     return base.Equals(other) &&
         EntityId == other.EntityId &&
         EntityName == other.EntityName &&
         EntityNamespace == other.EntityNamespace &&
         FormRegion == other.FormRegion;
 }
コード例 #2
0
 /// <summary>
 /// Queries the DB using the existing ListDynamicColumnInstanceHandler
 /// </summary>
 private ListDynamicColumnInstanceResponse QueryData()
 {
     var request = new ListDynamicColumnInstanceRequest()
     {
         EntityId = _moduleUtils.DynamicColumnEntityId,
         PageSize = _viewModel.PageSize,
         RequestedPage = _viewModel.PageNumber
     };
     return ProcessRequest<ListDynamicColumnInstanceResponse>(request);
 }