C# 클래스 IssueTracker.Data.Facade.IssueTrackerFacade

상속: IFacade
파일 보기 프로젝트 열기: radike/issue-tracker

공개 메소드들

메소드 설명
GetIssueBurndownChartData ( System.Guid projectId, int numberOfMonths ) : ICollection>
GetIssueBurndownChartData ( string projectCode, int numberOfMonths ) : ICollection>
GetIssuesInProgress ( ) : ICollection
GetIssuesInProgress ( System.Guid projectId ) : ICollection
GetIssuesInProgress ( Project project ) : ICollection
GetIssuesInProgress ( string projectCode ) : ICollection
GetNewIssues ( System.Guid projectId ) : ICollection
GetNewIssues ( string projectCode ) : ICollection
GetRaisedIssueCount ( System.Guid projectId, System.DateTime fromDate, System.DateTime toDate ) : int
GetResolvedIssues ( System.Guid projectId ) : ICollection
GetResolvedIssues ( string projectCode ) : ICollection
IsIssueInFinalState ( Issue issue ) : bool
IssueTrackerFacade ( IIssueService issueService, IStateService stateService, IProjectService projectService ) : System

비공개 메소드들

메소드 설명
GetMonthName ( int month ) : string

메소드 상세

GetIssueBurndownChartData() 공개 메소드

public GetIssueBurndownChartData ( System.Guid projectId, int numberOfMonths ) : ICollection>
projectId System.Guid
numberOfMonths int
리턴 ICollection>

GetIssueBurndownChartData() 공개 메소드

public GetIssueBurndownChartData ( string projectCode, int numberOfMonths ) : ICollection>
projectCode string
numberOfMonths int
리턴 ICollection>

GetIssuesInProgress() 공개 메소드

public GetIssuesInProgress ( ) : ICollection
리턴 ICollection

GetIssuesInProgress() 공개 메소드

public GetIssuesInProgress ( System.Guid projectId ) : ICollection
projectId System.Guid
리턴 ICollection

GetIssuesInProgress() 공개 메소드

public GetIssuesInProgress ( Project project ) : ICollection
project IssueTracker.Entities.Project
리턴 ICollection

GetIssuesInProgress() 공개 메소드

public GetIssuesInProgress ( string projectCode ) : ICollection
projectCode string
리턴 ICollection

GetNewIssues() 공개 메소드

public GetNewIssues ( System.Guid projectId ) : ICollection
projectId System.Guid
리턴 ICollection

GetNewIssues() 공개 메소드

public GetNewIssues ( string projectCode ) : ICollection
projectCode string
리턴 ICollection

GetRaisedIssueCount() 공개 메소드

public GetRaisedIssueCount ( System.Guid projectId, System.DateTime fromDate, System.DateTime toDate ) : int
projectId System.Guid
fromDate System.DateTime
toDate System.DateTime
리턴 int

GetResolvedIssues() 공개 메소드

public GetResolvedIssues ( System.Guid projectId ) : ICollection
projectId System.Guid
리턴 ICollection

GetResolvedIssues() 공개 메소드

public GetResolvedIssues ( string projectCode ) : ICollection
projectCode string
리턴 ICollection

IsIssueInFinalState() 공개 메소드

public IsIssueInFinalState ( Issue issue ) : bool
issue IssueTracker.Entities.Issue
리턴 bool

IssueTrackerFacade() 공개 메소드

public IssueTrackerFacade ( IIssueService issueService, IStateService stateService, IProjectService projectService ) : System
issueService IIssueService
stateService IStateService
projectService IProjectService
리턴 System