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

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

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

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

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

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

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

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

            return(mdal.GetModel(Code));
        }