Exemple #1
0
        public EventDTO InsertEvent(LoginSession session, String server, Int32 list, EventDTO ev, InsertPlaceType place, Guid position)
        {
            if (ev == null)
            {
                return(null);
            }
            CheckListLock(server, list);
            CheckParametersForInsertMethod(place, position);
            var tmpPair = ev.ToPair();

            return(_adcSrv.InsertEvent(server, list, tmpPair, place, position).ToDTO());
        }