Catbert4.Services.UserManagement.UnitService.UnitService C# (CSharp) 메소드

UnitService() 공개 메소드

public UnitService ( IRoleService roleService, IRepository schoolRepository, IRepository unitRepository, IRepository unitAssociationRespository ) : System.Linq
roleService IRoleService
schoolRepository IRepository
unitRepository IRepository
unitAssociationRespository IRepository
리턴 System.Linq
        public UnitService(IRoleService roleService,
            IRepository<School> schoolRepository,
            IRepository<Unit> unitRepository,
            IRepository<UnitAssociation> unitAssociationRespository)
        {
            _roleService = roleService;
            _schoolRepository = schoolRepository;
            _unitRepository = unitRepository;
            _unitAssociationRespository = unitAssociationRespository;
        }