Ejemplo n.º 1
0
        public static int UpdateExclusion(object fuelOrderOBJ)
        {
            FBODetailVendorExclusions fuelOrder = new FBODetailVendorExclusions();

            fuelOrder.Clone(fuelOrderOBJ);
            fuelOrder.Update();
            return(fuelOrder.Id);
        }
Ejemplo n.º 2
0
 public static void DeleteExclusion(int id)
 {
     FBODetailVendorExclusions.Delete(id);
 }
Ejemplo n.º 3
0
 public static List <FBODetailVendorExclusions> GetExclusionsByCustClient(int custId, int adminId)
 {
     return(FBODetailVendorExclusions.GetExclusionsByFBO(custId, adminId));
 }
Ejemplo n.º 4
0
 public static List <FBODetailVendorExclusions> GetExclusions()
 {
     return(FBODetailVendorExclusions.LoadList());
 }
Ejemplo n.º 5
0
 public static FBODetailVendorExclusions GetExclusion(int id)
 {
     return(FBODetailVendorExclusions.GetExclusion(id));
 }