You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
569 B
21 lines
569 B
3 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace BiskLog_Point_Of_Sale.OPS_Report.Employee.Classes
|
||
|
{
|
||
|
class EmployeeSalesClass
|
||
|
{
|
||
|
public string employeename { get; set; }
|
||
|
public int sold { get; set; }
|
||
|
public string sales { get; set; }
|
||
|
public decimal total { get; set; }
|
||
|
public string time { get; set; }
|
||
|
public string receiptid { get; set; }
|
||
|
public string product { get; set; }
|
||
|
public string unit { get; set; }
|
||
|
}
|
||
|
}
|