public void SendVendorEvaluaitonReportEmail()
 {
     try
     {
         _vendorEvaluationReport.SendVendorEvaluaitonReportEmail(3);
     }
     catch (Exception ex)
     {
         Assert.True(false, ex.Message);
     }
 }
예제 #2
0
 public IActionResult SendEmail(int id)
 {
     return(Ok(_vendorEvaluationReport.SendVendorEvaluaitonReportEmail(id)));
 }