public void MapModelToBO() { var mapper = new BOLOrganizationMapper(); ApiOrganizationRequestModel model = new ApiOrganizationRequestModel(); model.SetProperties("A"); BOOrganization response = mapper.MapModelToBO(1, model); response.Name.Should().Be("A"); }
public void MapBOToModel() { var mapper = new BOLOrganizationMapper(); BOOrganization bo = new BOOrganization(); bo.SetProperties(1, "A"); ApiOrganizationResponseModel response = mapper.MapBOToModel(bo); response.Id.Should().Be(1); response.Name.Should().Be("A"); }
public void MapEFToBO() { var mapper = new DALOrganizationMapper(); Organization entity = new Organization(); entity.SetProperties(1, "A"); BOOrganization response = mapper.MapEFToBO(entity); response.Id.Should().Be(1); response.Name.Should().Be("A"); }
public void MapBOToEF() { var mapper = new DALOrganizationMapper(); var bo = new BOOrganization(); bo.SetProperties(1, "A"); Organization response = mapper.MapBOToEF(bo); response.Id.Should().Be(1); response.Name.Should().Be("A"); }
public void MapBOToModelList() { var mapper = new BOLOrganizationMapper(); BOOrganization bo = new BOOrganization(); bo.SetProperties(1, "A"); List <ApiOrganizationResponseModel> response = mapper.MapBOToModel(new List <BOOrganization>() { { bo } }); response.Count.Should().Be(1); }