public SetCustomerManualAnnualizedRevenue(int nCustomerID, decimal nRevenue, string sComment)
        {
            Result = new CmarModel {
                Comment   = sComment,
                EntryTime = DateTime.UtcNow,
            };

            m_nCustomerID = nCustomerID;
            m_nRevenue    = nRevenue;
        }         // constructor
Beispiel #2
0
 public GetCustomerManualAnnualizedRevenue(int nCustomerID)
 {
     Result        = new CmarModel();
     m_nCustomerID = nCustomerID;
 }         // constructor