示例#1
0
 public ReportViewModel(IEventAggregator events, ICommentEndpoint commentEndpoint,
                        IStatusEndpoint statusEndpoint, IBugEndpoint bugEndpoint,
                        ILoggedInUserModel loggedUser)
 {
     _events          = events;
     _commentEndpoint = commentEndpoint;
     _statusEndpoint  = statusEndpoint;
     _bugEndpoint     = bugEndpoint;
     _loggedUser      = loggedUser;
     _events.Subscribe(this);
 }
示例#2
0
 public ClosedCasesViewModel(IBugEndpoint bugEndpoint, IEventAggregator events)
 {
     _bugEndpoint = bugEndpoint;
     _events      = events;
 }
 public ReportListViewModel(IBugEndpoint bugEndpoint, IEventAggregator events)
 {
     _bugEndpoint = bugEndpoint;
     _events      = events;
 }
示例#4
0
 public YourCasesViewModel(IBugEndpoint bugEndpoint, IEventAggregator events, ILoggedInUserModel loggedUser)
 {
     _bugEndpoint = bugEndpoint;
     _events      = events;
     _loggedUser  = loggedUser;
 }
 public NewReportViewModel(IListsEndpoint listsEndpoint, IBugEndpoint bugEndpoint)
 {
     _listsEndpoint = listsEndpoint;
     _bugEndpoint   = bugEndpoint;
 }