コード例 #1
0
 public UbsServiceTest()
 {
     Context    = InMemoryContext();
     unitOfWork = new UnitOfWork(Context);
     mapper     = new UbsMapper();
     service    = new UbsService(unitOfWork, mapper);
 }
コード例 #2
0
ファイル: UbsService.cs プロジェクト: cimarasah/teste_dotnet
 public UbsService(IUnitOfWork unitOfWork,
                   IUbsMapper mapper)
 {
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
 }