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