Prizm.Main.Synch.Export.DataExporter.GetPortionForReexport C# (CSharp) Method

GetPortionForReexport() public method

public GetPortionForReexport ( System.Guid PortionId ) : Portion
PortionId System.Guid
return Portion
        public Portion GetPortionForReexport(Guid PortionId)
        {
            Portion portion = null;
            try
            {
                portion = exportRepo.PortionRepo.Get(PortionId);
            }
            catch(RepositoryException ex)
            {
                log.Warn(this.GetType().Name + " | " + ex.ToString());
            }
            return portion;
        }