summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/IAddCompanyView.cs
blob: f5146aa81cdce1d1c47d58b950c3ee80151e9ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Collections.Generic;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
using MoMoney.Presentation.Presenters;

namespace MoMoney.Presentation.Views
{
    public interface IAddCompanyView : IDockedContentView,
                                       IView<IAddCompanyPresenter>,
                                       ICallback<IEnumerable<CompanyDTO>>
    {
    }
}