Exemple #1
0
        public static int UpdateImage(ImageFilter IFilt)
        {
            MaadSunDB MDB = new MaadSunDB();
            int       U   = MDB.UpdateImage(IFilt);

            return(U);
        }
Exemple #2
0
        public static int DeleteImageByUserID(int UserID)
        {
            MaadSunDB MDB = new MaadSunDB();
            int       U   = MDB.DeleteImageByUserID(UserID);

            return(U);
        }
Exemple #3
0
        public static int DeleteImageByImagename(string Imagename)
        {
            MaadSunDB MDB = new MaadSunDB();
            int       U   = MDB.DeleteImageByImagename(Imagename);

            return(U);
        }
Exemple #4
0
        public static int UpdateUser(UserFilter UFilt)
        {
            MaadSunDB MDB = new MaadSunDB();
            int       U   = MDB.UpdateUser(UFilt);

            return(U);
        }
Exemple #5
0
        public static UserList GETUSER(int ID)
        {
            MaadSunDB MDB   = new MaadSunDB();
            UserList  UList = new UserList();

            UList = MDB.GetUserbyID(ID);
            return(UList);
        }
Exemple #6
0
        public static UserList GETFILTEREDUSER(UserFilter UFilt)
        {
            MaadSunDB MDB   = new MaadSunDB();
            UserList  Ulist = new UserList();

            Ulist = MDB.GetUsers(UFilt);
            return(Ulist);
        }
Exemple #7
0
        public static SubCategoryList GetFilteredSubCategory(SubCategoryFilter SCFilter)
        {
            MaadSunDB MDB = new MaadSunDB();

            return(MDB.GetFilteredSubCategories(SCFilter));
        }
Exemple #8
0
        public static CategoryList GetCategoryList()
        {
            MaadSunDB MDB = new MaadSunDB();

            return(MDB.GetCategories());
        }
Exemple #9
0
        public static ImageList GetFilteredImage(ImageFilter IFilt)
        {
            MaadSunDB MDB = new MaadSunDB();

            return(MDB.GetFilteredImage(IFilt));
        }