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