Beispiel #1
0
 public UserLoginController(IUserLoginBAL user)
 {
     if (this._user == null)
     {
         this._user = user;
     }
 }
Beispiel #2
0
 public CityController(ICityBAL city, IUserLoginBAL user)
 {
     if (this._city == null)
     {
         this._city = city;
     }
     if (this._user == null)
     {
         this._user = user;
     }
 }