Epiworx.Business.ProjectInfoList.FetchProjectInfoList C# (CSharp) Method

FetchProjectInfoList() static private method

static private FetchProjectInfoList ( ProjectDataCriteria criteria ) : ProjectInfoList
criteria ProjectDataCriteria
return ProjectInfoList
        internal static ProjectInfoList FetchProjectInfoList(ProjectDataCriteria criteria)
        {
            return Csla.DataPortal.Fetch<ProjectInfoList>(criteria);
        }

Usage Example

 public static ProjectInfoList ProjectFetchInfoList(IUser user)
 {
     return(ProjectInfoList.FetchProjectInfoList(
                new ProjectDataCriteria
     {
         UserId = user.UserId
     }));
 }
All Usage Examples Of Epiworx.Business.ProjectInfoList::FetchProjectInfoList