Example #1
0
 public UserService(BdsDbContext context)
 {
     _context = context;
 }
Example #2
0
 public UserController(IUserService userService, BdsDbContext context)
 {
     _userService = userService;
     _context     = context;
 }
Example #3
0
 public LocationService(BdsDbContext context)
 {
     _context = context;
 }
Example #4
0
 public LocationController(ILocationService userService, BdsDbContext context)
 {
     _locationService = userService;
     _context         = context;
 }
 public PropertyService(BdsDbContext context)
 {
     _context = context;
 }
Example #6
0
 public PropertyController(IPropertyService propertyService, BdsDbContext context)
 {
     _propertyService = propertyService;
     _context         = context;
 }