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; }
public bool Update(Master_State obj, string[] param, string spName) { throw new NotImplementedException(); }
public IEnumerable <Master_State> GetAll(Master_State obj, string[] param, string spName) { return(_IStateRepository.GetAll(obj, param, spName)); }