Exemple #1
0
        public int FindCountByTelephone(Logisticscor obj)
        {
            String stmtId = "Logisticscor.GetFindByTelephoneCount";
            int    result = this.sqlMapper.QueryForObject <int>(stmtId, obj);

            return(result);
        }
Exemple #2
0
        public Logisticscor Find(Int64 id)
        {
            String       stmtId = "Logisticscor.Find";
            Logisticscor result = this.sqlMapper.QueryForObject <Logisticscor>(stmtId, id);

            return(result);
        }
Exemple #3
0
        public void Reload(Logisticscor obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Logisticscor.Find";

            this.sqlMapper.QueryForObject <Logisticscor>(stmtId, obj, obj);
        }
Exemple #4
0
        public void Delete(Logisticscor obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            String stmtId = "Logisticscor.Delete";

            this.sqlMapper.Delete(stmtId, obj);
        }
Exemple #5
0
 public CoporationAuditInfoRequest()
 {
     this.logisticsCorDao = new LogisticscorDao();
     this.logisticsPoco   = new Logisticscor();
     logger.Info("Constructor method done.");
 }
Exemple #6
0
        public void Update(Logisticscor obj)
        {
            String stmtId = "Logisticscor.Update";

            this.sqlMapper.Update(stmtId, obj);
        }