Exemple #1
0
        public TenderEscalatedPLaintModel GetTenderEscalatedPLaintModel()
        {
            TenderHistory history = new TenderHistory()
            {
                CreatedAt = DateTime.Now
            };

            return(new TenderEscalatedPLaintModel()
            {
                tenderHistory = history, HasEscalatedPlaints = true, ApprovalDate = DateTime.Now
            });
        }
Exemple #2
0
        public TenderPLaintCommunicationModel GetTenderPLaintCommunicationModel()
        {
            TenderHistory history = new TenderHistory()
            {
                CreatedAt = DateTime.Now
            };

            return(new TenderPLaintCommunicationModel()
            {
                tenderHistory = history
            });
        }