示例#1
0
 public ProjectGrantAllocationRequestSimple(ProjectGrantAllocationRequest projectGrantAllocationRequest)
     : this()
 {
     ProjectID         = projectGrantAllocationRequest.ProjectID;
     GrantAllocationID = projectGrantAllocationRequest.GrantAllocationID;
     TotalAmount       = projectGrantAllocationRequest.TotalAmount;
 }
 public static void DeleteProjectGrantAllocationRequest(this IQueryable <ProjectGrantAllocationRequest> projectGrantAllocationRequests, ProjectGrantAllocationRequest projectGrantAllocationRequestToDelete)
 {
     DeleteProjectGrantAllocationRequest(projectGrantAllocationRequests, new List <ProjectGrantAllocationRequest> {
         projectGrantAllocationRequestToDelete
     });
 }