예제 #1
0
        public IEnumerable <RedmineEmployee> GetAll()
        {
            var source = _commonImporter.GetMany();

            return(source.SelectMany(i => _serializer.Deserialize <EmployeesContainer>(i).Employees));
        }
예제 #2
0
        public IEnumerable <RedmineProject> GetAll()
        {
            var source = _commonImporter.GetMany();

            return(source.SelectMany(i => _serializer.Deserialize <ProjectsContainer>(i).Projects));
        }
        public IEnumerable <RedmineTimeRecord> GetAll()
        {
            var source = _commonImporter.GetMany();

            return(source.SelectMany(i => _serializer.Deserialize <TimeRecordsContainer>(i).TimeRecords));
        }
        public IEnumerable <RedmineIssueStatus> GetAll()
        {
            var source = _commonImporter.GetMany();

            return(source.SelectMany(i => _serializer.Deserialize <IssueStatusesContainer>(i).Statuses));
        }