Example #1
0
 public IAlertFluent Warning()
 {
     _style = Enums.AlertStyle.Warning;
     return new AlertFluent(this);
 }
Example #2
0
 public IAlertFluent Info()
 {
     _style = Enums.AlertStyle.Info;
     return new AlertFluent(this);
 }
Example #3
0
 public IAlertFluent Success()
 {
     _style = Enums.AlertStyle.Success;
     return new AlertFluent(this);
 }
Example #4
0
 public IAlertFluent Danger()
 {
     _style = Enums.AlertStyle.Danger;
     return new AlertFluent(this);
 }