protected void DirtyCheck(string value)
 {
     if (string.IsNullOrEmpty(value))
     {
         FormContext?.OnEmpty();
     }
     else
     {
         FormContext?.OnFill();
     }
 }