Epiworx.Business.ProjectUserRepository.ProjectUserNew C# (CSharp) 메소드

ProjectUserNew() 공개 정적인 메소드

public static ProjectUserNew ( int projectId, int userId ) : ProjectUser
projectId int
userId int
리턴 ProjectUser
        public static ProjectUser ProjectUserNew(int projectId, int userId)
        {
            var projectUser = ProjectUser.NewProjectUser(projectId, userId);

            return projectUser;
        }