50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
#region FestivalBonusProjection
|
|||
|
|
|||
|
public class FestivalBonusProjection : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public FestivalBonusProjection()
|
|||
|
{
|
|||
|
BasicMonth = EnumMonths.January;
|
|||
|
NoofBasic = 0.0;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
public EnumMonths BasicMonth { get; set; }
|
|||
|
public double NoofBasic { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
//#region Service Factory IFestivalBonusProjectionService : IFestivalBonusProjectionService
|
|||
|
|
|||
|
//internal static IFestivalBonusProjectionService Service
|
|||
|
//{
|
|||
|
// get { return Services.Factory.CreateService<IFestivalBonusProjectionService>(typeof(IFestivalBonusProjectionService)); }
|
|||
|
//}
|
|||
|
|
|||
|
//#endregion
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
|
|||
|
#region IFestivalBonusProjection Service
|
|||
|
|
|||
|
public interface IFestivalBonusProjectionService
|
|||
|
{
|
|||
|
FestivalBonusProjection Get(int id);
|
|||
|
List<FestivalBonusProjection> Get(EnumStatus status);
|
|||
|
int Save(FestivalBonusProjection item);
|
|||
|
void Delete(int id);
|
|||
|
FestivalBonusProjection Get(EnumMonths dBasicMonth);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|