コード例 #1
0
 /// <summary>
 /// Inject the Service class
 /// </summary>
 public UserMasterController(IEkatmService <UserMaster, Guid> userMasterService)
 {
     _userMasterService = userMasterService;
 }
コード例 #2
0
 public StateDeptController(IEkatmService <StateMaster, string> stateServ, IEkatmService <DeptMaster, string> deptServ)
 {
     this.stateServ = stateServ;
     this.deptServ  = deptServ;
 }