public TypeGenericService( ITypeGenericRepository typeGenericRepository, NotificationHandler notifications, IMapper mapper ) : base(typeGenericRepository) { _typeGenericRepository = typeGenericRepository; _notifications = notifications; _mapper = mapper; }
public ShippingCompanyService( IShippingCompanyRepository shippingCompanyRepository, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(shippingCompanyRepository) { _shippingCompanyRepository = shippingCompanyRepository; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; }
public CollegeService( ICollegeRepository CollegeRepository, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(CollegeRepository) { _CollegeRepository = CollegeRepository; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; }
public PhoneService( IGraduateRepository graduateRepository, IPhoneRepository phoneRepository, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(phoneRepository) { _phoneRepository = phoneRepository; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; _graduateRepository = graduateRepository; }
public AddressService( IGraduateRepository graduateRepository, IAddressRepository addressRepository, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(addressRepository) { _addressRepository = addressRepository; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; _graduateRepository = graduateRepository; }
public SellerService( ISellerRepository sellerRepository, UserManager <ApplicationUser> userManager, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(sellerRepository) { _sellerRepository = sellerRepository; _userManager = userManager; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; }
public EmployeeService( IEmployeeRepository EmployeeRepository, UserManager <ApplicationUser> userManager, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(EmployeeRepository) { _EmployeeRepository = EmployeeRepository; _userManager = userManager; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; }
public GraduateService( IGraduateRepository graduateRepository, UserManager <ApplicationUser> userManager, NotificationHandler notifications, IMapper mapper, ITypeGenericRepository typeGenericRepository) : base(graduateRepository) { _graduateRepository = graduateRepository; _userManager = userManager; _notifications = notifications; _typeGenericRepository = typeGenericRepository; _mapper = mapper; }