IS.Model.Service.AuditoryService.GetById C# (CSharp) Method

GetById() public method

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