Ejemplo n.º 1
0
        public static void Delete(int ID)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            objCaller.Delete(ID);
        }
Ejemplo n.º 2
0
        public static IList<LookupDetails> GetAllCountries()
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetAllCountries();
        }
Ejemplo n.º 3
0
        public static IList<Volunteer> GetAll()
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetAll();
        }
Ejemplo n.º 4
0
        public static Volunteer GetByID(int ID)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetByID(ID);
        }
Ejemplo n.º 5
0
        public static void Update(Volunteer obj)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            objCaller.Update(obj);
        }
Ejemplo n.º 6
0
        public static int Add(Volunteer obj)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.Add(obj);
        }