aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO/SiteDTO.cs
blob: 4d09bda9c9f77db231b9bf42fbba404c6318fac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.BL.DTO
{
    public class SiteDTO : SiteDTOBase
    {
        public List<SitesRmlDTO> SitesRmls { get; set; }

        public List<SitesCatalogDTO> SitesCatalogs { get; set; }

        [ObservableDTOProperty(MapsTo = nameof(Site.Organization) + "." + nameof(Site.Organization.Name))]
        public String OrganizationName { get; set; }

        public SiteDTO()
        {
            SitesRmls = new List<SitesRmlDTO>();
            SitesCatalogs = new List<SitesCatalogDTO>();
        }

        protected override string OnGetActionLogName()
        {
            return $"Site '{Name}'";
        }
    }
}