Esempio n. 1
0
        public void Post_DeleteContact(List <int> ids)
        {
            IContactBS bs = DIFactoryDesigntime.GetInstance <IContactBS>();

            if (ids.Count > 0)
            {
                ids.ForEach(delegate(int id)
                {
                    bs.DeleteContact(id);
                });
            }
        }
Esempio n. 2
0
        public void DeleteContact(int id)
        {
            IContactBS bs = DIFactoryDesigntime.GetInstance <IContactBS>();

            bs.DeleteContact(id);
        }