diff --git a/arbitraryBusinessLogic.cs b/arbitraryBusinessLogic.cs new file mode 100644 index 000000000000..bd5b5918df16 --- /dev/null +++ b/arbitraryBusinessLogic.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace illacceptanything +{ + public class arbitraryBusinessLogic + { + public double GetNumberOne(string user) + { + if (!string.IsNullOrEmpty(user) && user == "Dave") + { + Random rand = new Random(); + double gate = rand.NextDouble(); + + if (gate > .3) + { + return .9999999993; + } + } + return 1.0; + } + } +}