Esempio n. 1
0
        public int Update(TC_PaymentSumModel ObjModel, SqlTransaction Transaction)
        {
            TC_PaymentSumDAL mdal = new TC_PaymentSumDAL(Transaction);

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

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

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

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

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

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

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

            return(mdal.GetModel(Code));
        }