/// <summary> /// Inject the Service class /// </summary> public UserMasterController(IEkatmService <UserMaster, Guid> userMasterService) { _userMasterService = userMasterService; }
public StateDeptController(IEkatmService <StateMaster, string> stateServ, IEkatmService <DeptMaster, string> deptServ) { this.stateServ = stateServ; this.deptServ = deptServ; }