Ejemplo n.º 1
0
        public int Insert(GK_OA_OfficialSealOutModel ObjModel, SqlTransaction Transaction)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Transaction);

            return(tdal.Insert(ObjModel));
        }
Ejemplo n.º 2
0
        public List <GK_OA_OfficialSealOutModel> GetModels(GK_OA_OfficialSealOutQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Transaction);

            return(tdal.Select(ObjQueryModel));
        }
Ejemplo n.º 3
0
        public List <GK_OA_OfficialSealOutModel> GetModels(SqlTransaction Transaction)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Transaction);

            return(tdal.Select());
        }
Ejemplo n.º 4
0
        public GK_OA_OfficialSealOutModel GetModel(int Code, SqlTransaction Transaction)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Transaction);

            return(tdal.GetModel(Code));
        }
Ejemplo n.º 5
0
        public GK_OA_OfficialSealOutModel GetModel(int Code, SqlConnection Connection)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Connection);

            return(tdal.GetModel(Code));
        }
Ejemplo n.º 6
0
        public int Delete(int Code, SqlTransaction Transaction)
        {
            GK_OA_OfficialSealOutDAL tdal = new GK_OA_OfficialSealOutDAL(Transaction);

            return(tdal.Delete(Code));
        }