Last active
December 6, 2019 12:04
-
-
Save abhishekbhalani/a482a7c42e56d13336e6e6d123c214cc to your computer and use it in GitHub Desktop.
Current Calculation Logic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CalculationA | |
{ | |
public string str1 {get;set;} | |
public string str2 {get;set;} | |
// 40 around properties | |
} | |
public class CalculationB{ | |
public string str3 {get;set;} | |
public string str4 {get;set;} | |
// 40 around properties | |
} | |
Public class MasterClass{ | |
public CalculationA calcA {get;set;} | |
public CalculationB calcB {get;set;} | |
// 100+ around Model properties | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment