public UserService(BdsDbContext context) { _context = context; }
public UserController(IUserService userService, BdsDbContext context) { _userService = userService; _context = context; }
public LocationService(BdsDbContext context) { _context = context; }
public LocationController(ILocationService userService, BdsDbContext context) { _locationService = userService; _context = context; }
public PropertyService(BdsDbContext context) { _context = context; }
public PropertyController(IPropertyService propertyService, BdsDbContext context) { _propertyService = propertyService; _context = context; }