mirror of
https://github.com/stokebob/BealeEngineering.git
synced 2026-03-21 07:37:16 +00:00
42 lines
748 B
C#
42 lines
748 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BealeEngineering.Core.Data
|
|
{
|
|
public class SaleInvoiceFormat
|
|
{
|
|
public string ReadInvoicePrefix()
|
|
{
|
|
return "BI#";
|
|
}
|
|
|
|
public string ReadCreditNotePrefix()
|
|
{
|
|
return "CN#";
|
|
}
|
|
|
|
public int ReadNumberLength()
|
|
{
|
|
return 6;
|
|
}
|
|
|
|
public int ReadNumberPrefixLength()
|
|
{
|
|
return 3;
|
|
}
|
|
|
|
public string ReadStatusStringNew()
|
|
{
|
|
return "New";
|
|
}
|
|
|
|
public string ReadStatusStringModified()
|
|
{
|
|
return "Modified";
|
|
}
|
|
}
|
|
}
|