public void RemoveNoReturnAsync(ComponentSpecificationMinimal bllComponentSpecification) { ServiceRepository.RemoveNoReturnAsync(_mapper.MapToDALMinimal(bllComponentSpecification)); }
public void AddNoReturn(ComponentSpecificationMinimal bllComponentSpecification) { ServiceRepository.AddNoReturn(_mapper.MapToDALMinimal(bllComponentSpecification)); }
public void AddNoReturn(ComponentSpecificationMinimal dalComponentSpecificationMinimal) { RepoDbSet.Add(_mapper.MapToDomain(dalComponentSpecificationMinimal)); }
public void RemoveNoReturnAsync(ComponentSpecificationMinimal dalComponentSpecificationMinimal) { RepoDbSet.Remove(_mapper.MapToDomain(dalComponentSpecificationMinimal)); }
public ComponentSpecification MapToDomain(ComponentSpecificationMinimal dalComponentSpecificationMinimal) { return(Map <ComponentSpecificationMinimal, ComponentSpecification>(dalComponentSpecificationMinimal)); }