/// <summary>
 /// helper method to convert CamelCaseString to Camel Case String
 /// by inserting spaces
 /// </summary>
 /// <see cref="http://www.developer.com/net/asp/article.php/3609991"/>
 protected string BreakCamelCase(string CamelString)
 {
     return(UtilsBLL.BreakCamelCase(CamelString));
 }
 private void txtValorDiaria_TextChanged(object sender, EventArgs e)
 {
     UtilsBLL.Moeda(ref txtValorDiaria);
 }