Ejemplo n.º 1
0
 public ContactGroupController(IUnitOfWorkPseezEnt uow, IContactGroupService contactGroupService,
                               IContactListService contactListService)
 {
     _uow = uow;
     _contactGroupService = contactGroupService;
     _contactListService  = contactListService;
 }
        public UserContactListController(IUnitOfWorkPseezEnt uow, IIdentityUserService identityUserService, IUserContactListService userContactListService,
                                         IContactListService contactListService)
        {
            _uow = uow;
            _identityUserService    = identityUserService;
            _userContactListService = userContactListService;

            _contactListService = contactListService;
        }
Ejemplo n.º 3
0
 public ContactListController(IContactListService contactListService)
 {
     _contactListService = contactListService;
 }
 public ContactListController(IContactListService service)
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }
Ejemplo n.º 5
0
 public ContactListController(IMapper mapper, IContactListService contactListService)
 {
     _mapper             = mapper;
     _contactListService = contactListService;
 }
 public ContactListController(IContactListService service)
 {
     _service = service;
 }
 public ContactListController(IContactListService service, MembershipProvider provider)
 {
     Service = service;
     Provider = provider;
 }