示例#1
0
        internal Contractor GetOne(int id)
        {
            var contractor = _crepo.GetOne(id);

            if (contractor == null)
            {
                throw new SystemException("INVALID ID");
            }
            else
            {
                return(contractor);
            }
        }