Blog.Logic.Core.UsersLogic.UsersLogic C# (CSharp) Метод

UsersLogic() публичный Метод

public UsersLogic ( IUserRepository userRepository, IAddressRepository addressRepository, IEducationRepository educationRepository, IMediaRepository mediaRepository ) : System
userRepository IUserRepository
addressRepository IAddressRepository
educationRepository IEducationRepository
mediaRepository IMediaRepository
Результат System
        public UsersLogic(
            IUserRepository userRepository, 
            IAddressRepository addressRepository, 
            IEducationRepository educationRepository, 
            IMediaRepository mediaRepository)
        {
            _userRepository = userRepository;
            _addressRepository = addressRepository;
            _educationRepository = educationRepository;
            _mediaRepository = mediaRepository;
        }