public MtnCountriesController(lexis_hmsContext context, ICountryRepository countyRepository) { _context = context; _countyRepository = countyRepository; }
public MtnStatesController(lexis_hmsContext context) { _context = context; }
public MtnReligionsController(lexis_hmsContext context) { _context = context; }
public MtnAddressTypesController(lexis_hmsContext context) { _context = context; }
public LoginRepository(lexis_hmsContext context) { _context = context; }
public UserProfileRepository(lexis_hmsContext context) { _context = context; }
public MtnCitiesController(lexis_hmsContext context) { _context = context; }
public CountryRepository(lexis_hmsContext context, ILoginRepository loginRepository) { _context = context; _loginRepository = loginRepository; }
public UserProfilesController(lexis_hmsContext context, IUserProfileRepository userProfileRepository) { _context = context; _userProfileRepository = userProfileRepository; }