IS.Model.Service.AuditoryService.GetById C# (CSharp) 메소드

GetById() 공개 메소드

Получает аудиторию по идентификатору.
public GetById ( int id ) : AuditoryItem
id int Идентификатор.
리턴 IS.Model.Item.Auditory.AuditoryItem
        public AuditoryItem GetById(int id)
        {
            return _auditoryRepository.Get(id);
        }