public void Addplan()
        {
            BLModel.PlanName = "Plan four";
            BLModel.ClientID = 1;
            int result = _planBL.AddPlan(BLModel);

            Assert.IsTrue(result > 0, "Unable to Add");
        }
Beispiel #2
0
 public int AddPlan(Plan plan)
 {
     return(_plan.AddPlan(Mapper.Map <DTO.Plan, HCRGUniversity.Core.BL.Model.Plan>(plan)));
 }