Example #1
0
        public Vertical_law Load_all_vertical_law()
        {
            Vertical_law result = new Vertical_law(Id);

            if (Type != 1 && id_higher != 0)
            {
                Area higher_area = this.Load_Higher();
                result += higher_area.Load_all_vertical_law();
            }
            return(result);
        }
Example #2
0
 static public VerLawdata Lawto_data(Vertical_law verlaw)
 {
     return(new VerLawdata(verlaw.Id, verlaw.List_document));
 }