Exemplo n.º 1
0
        public static IFunEvent CreateFunEvent()
        {
            SignMeUp       smu = new SignMeUp();
            ISignup        su  = smu;
            IFunEvent      fe  = smu;
            SignupBusiness sb  = new SignupBusiness(su, fe);

            return(sb);
        }
Exemplo n.º 2
0
 public SignupBusiness(ISignup iSignup, IFunEvent iFunEvent)
 {
     this._iSignup   = iSignup;
     this._iFunEvent = iFunEvent;
 }