Exemple #1
0
        public static void Delete(int ID)
        {
            EmailDataMapper objCaller = new EmailDataMapper();

            objCaller.Delete(ID);
        }
Exemple #2
0
        public static IList<Email> GetAll()
        {
            EmailDataMapper objCaller = new EmailDataMapper();

            return objCaller.GetAll();
        }
Exemple #3
0
        public static void Update(Email obj)
        {
            EmailDataMapper objCaller = new EmailDataMapper();

            objCaller.Update(obj);
        }
Exemple #4
0
        public static Email GetByID(int ID)
        {
            EmailDataMapper objCaller = new EmailDataMapper();

            return objCaller.GetByID(ID);
        }
Exemple #5
0
        public static int Add(Email obj)
        {
            EmailDataMapper objCaller = new EmailDataMapper();

            return objCaller.Add(obj);
        }