Ejemplo n.º 1
0
		protected string GetInicioData(GISADataset.SFRDDatasProducaoRow sfrd) {
			string result = "";
			if (!sfrd.IsInicioAnoNull() && sfrd.InicioAno.Length > 0)
				result += sfrd.InicioAno;
			else
				result += "????";
			result += ".";
			if (!sfrd.IsInicioMesNull() && sfrd.InicioMes.Length > 0)
				result += sfrd.InicioMes;
			else
				result += "??";
			result += ".";
			if (!sfrd.IsInicioDiaNull() && sfrd.InicioDia.Length > 0)
				result += sfrd.InicioDia;
			else
				result += "??";

			return result;
		}