Example #1
0
    public void Distribute(string userName, byte[] file)
    {
        var ftpAccount = _repository.GetAccount(userName);

        _client.Connect(ftpAccount.Host);
        _client.Authenticate(ftpAccount.userName, ftpAccount.Password);
        _Client.Send(file);
    }