Esempio n. 1
0
        public void ChangeShowcaseDates(long communityId, DateTime?startDate, DateTime?endDate)
        {
            ICommunityDac communityDac = this._communityDac;
            KeyValuePair <int, string> showcaseType = ItemTypeBc.Instance.GetShowcaseType();

            communityDac.ChangeShowcaseDates(communityId, startDate, endDate, showcaseType.Key);
        }
Esempio n. 2
0
 private CommunityBc()
 {
     this._communityDac = AdminDacFactoryClient.GetConcreteFactory().GetCommunityDac();
 }