26 lines
645 B
C#
26 lines
645 B
C#
namespace AdvertsingProfitControl
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class CostAnalysi
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public decimal? SalesPerManHour { get; set; }
|
|
|
|
public decimal? SalaryPercentage { get; set; }
|
|
|
|
public decimal? SalaryDollar { get; set; }
|
|
|
|
public decimal? Supplies { get; set; }
|
|
|
|
public int FkDateId { get; set; }
|
|
|
|
public virtual WeekEndingDate WeekEndingDate { get; set; }
|
|
}
|
|
}
|