public static UsuarioOperations Instance()
 {
     if (instance == null)
     {
         lock (padlock)
             if (instance == null)
             {
                 instance = new UsuarioOperations();
             }
     }
     return(instance);
 }