public static CustomerPriceMarginsCollection Delete(int id) { CustomerPriceMarginsCollection collection = new CustomerPriceMarginsCollection(); collection.Delete(id); return(collection); }
//public static CustomerPriceMarginsCollection GetCustomerPriceMarginByCustClientIDAndICAO(int customerClientId, string icao) //{ // return GetCustomerPriceMarginByCustClientIDAndICAO(customerClientId, 0, icao); //} public static CustomerPriceMarginsCollection GetCustomerPriceMarginByCustClientIDAndICAO(int custClientId, int adminClientId, string icao) { CustomerPriceMarginsCollection collection = new CustomerPriceMarginsCollection(); collection.LoadByCustClientIDAndICAO(custClientId, adminClientId, icao); return(collection); }
public static CustomerPriceMarginsCollection GetCustomerPriceMarginForAllVendors(int customerClientId, int adminClientId, string icao) { CustomerPriceMarginsCollection collection = new CustomerPriceMarginsCollection(); collection.LoadByCustClientIDForAllVendors(customerClientId, adminClientId, icao); return(collection); }
public static CustomerPriceMarginsCollection LoadList() { CustomerPriceMarginsCollection collection = new CustomerPriceMarginsCollection(); collection.LoadAll(); return(collection); }