예제 #1
0
파일: UsersBLL.cs 프로젝트: FR-MN/RGR
 public UsersBLL(IUsersDAL usersDAL, IUsersImagesDAL relationsDAL)
 {
     if (usersDAL == null || relationsDAL == null)
     {
         throw new ArgumentNullException("one of the dals is null");
     }
     this.usersDAL     = usersDAL;
     this.relationsDAL = relationsDAL;
 }