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

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

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

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

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

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

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

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

            return(mdal.GetModel(Code));
        }