Ejemplo n.º 1
0
 public PhonesController(ManageUsersService userService, ManagePhonesService phoneService, ManageAbonentService abonentService)
 {
     _userService    = userService;
     _phoneService   = phoneService;
     _abonentService = abonentService;
 }
 public AddressesController(ManageUsersService userService, ManageAddressService service, ManageAbonentService abonentService)
 {
     _userService    = userService;
     _addressService = service;
     _abonentService = abonentService;
 }
 public AbonentsController(ManageUsersService userService, ManageAbonentService service)
 {
     _userService    = userService;
     _abonentService = service;
 }
 public AbonentGroupController(ManageUsersService userService, ManageAbonentGroupService service, ManageAbonentService abonentService)
 {
     _userService = userService;
     _abonentGroupServiceService = service;
     _abonentService             = abonentService;
 }