コード例 #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS10003Controller(IPMS10003Service service, IPMSCommonService commonservice)
 {
     this._service       = service;
     this._commonService = commonservice;
 }
コード例 #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS01002Controller(IPMS01002Service service, IPMSCommonService commonservice)
 {
     this._service      = service;
     this.commonService = commonservice;
 }
コード例 #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS09004Controller(IPMS09004Service service, IPMSCommonService commonservice)
 {
     this.mainService   = service;
     this.commonService = commonservice;
 }
コード例 #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS08001Controller(IPMS08001Service service, IPMSCommonService commonService)
 {
     this._service       = service;
     this._commonService = commonService;
     this._viewModel     = new PMS08001ListViewModel();
 }
コード例 #5
0
 /// <summary>
 /// Parameterized constructor
 /// </summary>
 /// <param name="service">service instance</param>
 public PMS09003Controller(IPMS09003Service service, IPMSCommonService commonservice)
 {
     this.service       = service;
     this.commonService = commonservice;
 }
コード例 #6
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS11003Controller(IPMS11003Service service, IPMSCommonService cmService)
 {
     this.mainService   = service;
     this.commonService = cmService;
 }
コード例 #7
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public PMS03001Controller(IPMS03001Service service, IPMSCommonService cmService)
 {
     this.mainService   = service;
     this.commonService = cmService;
 }
コード例 #8
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service">Service worker</param>
 public CommonController(IPMSCommonService commonservice, IPMS01002Service servicePMS01002, IPMS02001Service servicePMS02001)
 {
     this.commonService   = commonservice;
     this.servicePMS01002 = servicePMS01002;
     this.servicePMS02001 = servicePMS02001;
 }