Ejemplo n.º 1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public AppFeedbackController(IAppFeedbackService service, IAppService appService)
 {
     this._service    = service;
     this._appService = appService;
 }
Ejemplo n.º 2
0
 public DetailModel(IAppFeedbackService service)
 {
     this._service = service;
 }
Ejemplo n.º 3
0
 public IndexModel(IAppFeedbackService service, IAppService appService, ICacheProvider cache)
 {
     this._service    = service;
     this._appService = appService;
     this._cache      = cache;
 }