Epiworx.Business.ProjectRepository.ProjectFetchInfoList C# (CSharp) Method

ProjectFetchInfoList() public static method

public static ProjectFetchInfoList ( ) : ProjectInfoList
return ProjectInfoList
        public static ProjectInfoList ProjectFetchInfoList()
        {
            return ProjectRepository.ProjectFetchInfoList(new ProjectDataCriteria());
        }

Same methods

ProjectRepository::ProjectFetchInfoList ( IUser user ) : ProjectInfoList
ProjectRepository::ProjectFetchInfoList ( ProjectDataCriteria criteria ) : ProjectInfoList

Usage Example

        public static HourInfoList HourFetchInfoList(HourDataCriteria criteria)
        {
            criteria.ProjectId = ProjectRepository.ProjectFetchInfoList()
                                 .Select(row => row.ProjectId)
                                 .ToArray();

            return(HourInfoList.FetchHourInfoList(criteria));
        }
All Usage Examples Of Epiworx.Business.ProjectRepository::ProjectFetchInfoList