Ejemplo n.º 1
0
        public static List<Area> GetAllAreas()
        {
            AreaCollection list = new AreaCollection();
            list.OrderByAsc(Area.Columns.Description);
            list.Load();

            return list.ToList();
        }