public EmploymentDto Get(Guid guid)
        {
            var state = _employmentStateRepository.GetEmploymentState(guid);

            return(new EmploymentDto(state));
        }
Пример #2
0
        public IEmployment GetEmployment(Guid guid)
        {
            var state = _repo.GetEmploymentState(guid);

            return(new Employment(state, _repo));
        }