DBPOLLDemo.Controllers.EmailController.EmailController C# (CSharp) Method

EmailController() public method

Constructor for EmailController Object.
public EmailController ( string username, string password, string destAddress ) : System
username string Username of user
password string Password of user
destAddress string Email address of user
return System
        public EmailController(string username, string password, string destAddress)
        {
            this.username = username;
            this.password = password;
            this.destAddress = destAddress;
            buildBody();
        }

Same methods

EmailController::EmailController ( String pollname, String destAddress ) : System