예제 #1
0
 public UserStatisticsService(IFileRepository serviceFile
                               , IProjectRepository serviceProject
                               , ICommentRepository serviceComment
                               , IInvitRepository serviceInvit)
 {
     this.repoFile = serviceFile;
     this.repoProject = serviceProject;
     this.repoComment = serviceComment;
     this.repoInvit = serviceInvit;
 }
예제 #2
0
 public UserStatisticsService(IFileRepository serviceFile
                              , IProjectRepository serviceProject
                              , ICommentRepository serviceComment
                              , IInvitRepository serviceInvit)
 {
     this.repoFile    = serviceFile;
     this.repoProject = serviceProject;
     this.repoComment = serviceComment;
     this.repoInvit   = serviceInvit;
 }
예제 #3
0
파일: InvitService.cs 프로젝트: jrocket/MOG
 public InvitService(IInvitRepository repo)
 {
     this.repoInvit = repo;
 }
예제 #4
0
 public InvitService(IInvitRepository repo)
 {
     this.repoInvit = repo;
 }