-
Notifications
You must be signed in to change notification settings - Fork 0
/
AFee.cs
38 lines (32 loc) · 1.4 KB
/
AFee.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/// Grenci CPA 411 Project
/// Authors: Justin Bloss, Will Hoffman, Victor Stahlman, & Cameron Weaver
/// Project goal: make a program for Dr. Anthony Grenci to use at his CPA firm to keep track of billing, and automate the calculation process.
/// Page: This page is for the AChar class which we use to store characteristic throughout the project. In this case this in the version running the globals page
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GrenciCPA
{
class AFee
{
// ID for passing and retrieving
private int feeID;
// identification vars
private string feeName;
private decimal feeCost;
private decimal feeMin;
private int servID;
private string servName;
private bool active;
// accessors and mutators for AClient class
public int FeeID { get => feeID; set => feeID = value; }
public string FeeName { get => feeName; set => feeName = value; }
public decimal FeeCost { get => feeCost; set => feeCost = value; }
public decimal FeeMin { get => feeMin; set => feeMin = value; }
public int ServID { get => servID; set => servID = value; }
public string ServName { get => servName; set => servName = value; }
public bool Active { get => active; set => active = value; }
}
}