root/UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/View/IEmployeeView.cs

User picture

Author: marisic.net

Revision: 112 («Previous)


File Size: 310 Bytes

(February 02, 2009 07:47 UTC) Over 3 years ago


  

 
Show/hide line numbers
#region Using Statements

using System.Collections.Generic;
using Domain.Business;

#endregion

namespace Modules.EmployeeManagement.View
{
    public interface IEmployeeView
    {
        IList<Employee> Employees { get; set; }
        IList<Employee> EmployeesListDatasource { set; }
    }
}