コード例 #1
0
 public void RemoveNoReturnAsync(ComponentSpecificationMinimal bllComponentSpecification)
 {
     ServiceRepository.RemoveNoReturnAsync(_mapper.MapToDALMinimal(bllComponentSpecification));
 }
コード例 #2
0
 public void AddNoReturn(ComponentSpecificationMinimal bllComponentSpecification)
 {
     ServiceRepository.AddNoReturn(_mapper.MapToDALMinimal(bllComponentSpecification));
 }
コード例 #3
0
 public void AddNoReturn(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     RepoDbSet.Add(_mapper.MapToDomain(dalComponentSpecificationMinimal));
 }
コード例 #4
0
 public void RemoveNoReturnAsync(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     RepoDbSet.Remove(_mapper.MapToDomain(dalComponentSpecificationMinimal));
 }
コード例 #5
0
 public ComponentSpecification MapToDomain(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     return(Map <ComponentSpecificationMinimal, ComponentSpecification>(dalComponentSpecificationMinimal));
 }