コード例 #1
0
ファイル: Vendors.cs プロジェクト: hhenryjr/FuelerLinx
        public static VendorsCollection GetVendorsByAdminClient(int adminId)
        {
            VendorsCollection collection = new VendorsCollection();

            collection.LoadByAdminClient(adminId);
            return(collection);
        }
コード例 #2
0
ファイル: Vendors.cs プロジェクト: hhenryjr/FuelerLinx
        public static VendorsCollection Delete(int id)
        {
            VendorsCollection collection = new VendorsCollection();

            collection.Delete(id);
            return(collection);
        }
コード例 #3
0
ファイル: Vendors.cs プロジェクト: hhenryjr/FuelerLinx
        public static VendorsCollection LoadList()
        {
            VendorsCollection collection = new VendorsCollection();

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