public string this[string columnName]
        {
            get
            {
                string result = null;
                if (columnName == "OutType")
                {
                    if (String.IsNullOrEmpty(OutType))
                    {
                        result = String.Format("{0} required.\r\n", columnName);
                    }

                    //if (OutType == null)
                    //{
                    //    result = "OutType not supplied.";
                    //}
                }
                if (columnName == "OutCode")
                {
                    if (OutCode != null && OutCode.ToString().Length > 8)
                    {
                        result = "OutCode exceeds maximum length (8 digits).";
                        //OutCode = (int?)int.Parse(OutCode.ToString().Substring(0, 8));
                    }
                }
                return(result);
            }
        }
Exemplo n.º 2
0
 public string this[string columnName]
 {
     get
     {
         string result = null;
         if (columnName == "OutType")
         {
             if (OutType == null)
             {
                 result = "OutType not supplied.";
             }
         }
         if (columnName == "OutCode")
         {
             if (OutCode != null && OutCode.ToString().Length > 8)
             {
                 result = "OutCode exceeds maximum length (8 digits).";
                 //OutCode = (int?)int.Parse(OutCode.ToString().Substring(0, 8));
             }
         }
         return(result);
     }
 }
Exemplo n.º 3
0
        public string this[string columnName]
        {
            get
            {
                string result = null;
                if (columnName == "OutType")
                {
                    if (OutType == null)
                    {
                        result = "OutType not supplied.";
                    }
                }

                if (columnName == "ULN")
                {
                    if (OutCode != null && OutCode.ToString().Length > 9)
                    {
                        result = "OutCode Number exceeds maximum length (9 digits).";
                    }
                }

                return(result);
            }
        }