moved repolist to bll

This commit is contained in:
Wyatt Miller
2018-12-04 13:28:04 -05:00
parent d6054b7745
commit 7a51d60458
14 changed files with 22 additions and 22 deletions

View File

@ -1,33 +0,0 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeskHubSharp
{
class RepoInfo
{
// TODO: Rename this to something more generic
public RepoInfo()
{
}
public List<string> GetRepoInfoDataGrid()
{
List<string> stuff = RequestList.repoDetail.Select(x => x.full_name).ToList();
//stuff =+ RepoList.repoDetail.Select(x => x.name).ToList();
return stuff;
}
// validation
public List<string> GetBranchNameComboBox()
{
List<string> stuff = RequestList.branchDetail.Select(x => x.name).ToList();
return stuff;
}
}
}