
export class Utils {
  static isNullOrEmpty(value:String):boolean {
    return value === undefined || value === null || value === "";
  }
}