コード例 #1
0
 public EmployementController(IEmployementService IEmployementService, ICityService ICityService, IStateService IStateService, ICountryService ICountryService, IUserService IUserService, IEmploymentCountService IEmploymentCountService)
 {
     this._IEmployementService = IEmployementService;
     _employement       = new EmploymentDetail();
     this._ICityService = ICityService;
     _city = new Master_City();
     this._IStateService = IStateService;
     _state = new Master_State();
     this._ICountryService = ICountryService;
     _country                      = new Master_Country();
     this._IUserService            = IUserService;
     this._IEmploymentCountService = IEmploymentCountService;
 }
コード例 #2
0
ファイル: StateService.cs プロジェクト: ankur-soni/Utilities
 public bool Update(Master_State obj, string[] param, string spName)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: StateService.cs プロジェクト: ankur-soni/Utilities
 public IEnumerable <Master_State> GetAll(Master_State obj, string[] param, string spName)
 {
     return(_IStateRepository.GetAll(obj, param, spName));
 }