Exemple #1
0
        public static VendorsCollection GetVendorsByAdminClient(int adminId)
        {
            VendorsCollection collection = new VendorsCollection();

            collection.LoadByAdminClient(adminId);
            return(collection);
        }
Exemple #2
0
        public static VendorsCollection Delete(int id)
        {
            VendorsCollection collection = new VendorsCollection();

            collection.Delete(id);
            return(collection);
        }
Exemple #3
0
        public static VendorsCollection LoadList()
        {
            VendorsCollection collection = new VendorsCollection();

            collection.LoadAll();
            return(collection);
        }