root/UnityWeb/UnityWeb/Modules/Modules/EmployeeManagement/IEmployeeController.cs

User picture

Author: marisic.net

Revision: 112 («Previous)


File Size: 331 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
{
    public interface IEmployeeController
    {
        Employee GetEmployee(int id);
        IList<Employee> GetEmployees();
        void SaveEmployee(Employee employee);
    }
}