Beispiel #1
0
        public static List <CTCB> GetCTCBs(int maCB)
        {
            var ctcbs = DAL_CTCB.GetCTCBs(maCB);

            if (ctcbs == null)
            {
                return(new List <CTCB>());
            }
            return(ctcbs);
        }
Beispiel #2
0
 public static bool DeleteCTCB(int maCB)
 {
     return(DAL_CTCB.DeleteCTCB(maCB));
 }
Beispiel #3
0
 public static bool UpdateCTCB(CTCB cTCB)
 {
     return(DAL_CTCB.UpdateCTCB(cTCB));
 }
Beispiel #4
0
 public static bool InsertCTCB(CTCB cTCB, int maCB)
 {
     return(DAL_CTCB.InsertCTCB(cTCB, maCB));
 }