Beispiel #1
0
        public int Update(TC_PaymentSumModel ObjModel, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.Update(ObjModel));
        }
Beispiel #2
0
        public int Insert(TC_PaymentSumModel ObjModel, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.Insert(ObjModel));
        }
Beispiel #3
0
        public int Delete(int Code, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.Delete(Code));
        }
Beispiel #4
0
        public List <TC_PaymentSumModel> GetModels(TC_PaymentSumQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.Select(ObjQueryModel));
        }
Beispiel #5
0
        public List <TC_PaymentSumModel> GetModels(SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.Select());
        }
Beispiel #6
0
        public List <TC_PaymentSumModel> GetModels(SqlConnection Connection)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Connection);

            return(mdal.Select());
        }
Beispiel #7
0
        public TC_PaymentSumModel GetModel(int Code, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

            return(mdal.GetModel(Code));
        }
Beispiel #8
0
        public TC_PaymentSumModel GetModel(int Code, SqlConnection Connection)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Connection);

            return(mdal.GetModel(Code));
        }