public OtherFee(string name, double price) { Name = name; Price = price; Type = new FeeType().GetFeeTypeByName(FeeTypes.Other.ToString()); }
public LaboratoryFee(string name, double price) { Name = name; Price = price; Type = new FeeType().GetFeeTypeByName(FeeTypes.Laboratory.ToString()); }
public TuitionFee(string name, double price) { Name = name; PricePerUnit = price; Type = new FeeType().GetFeeTypeByName(FeeTypes.Tuition.ToString()); }
public NormalFee(string name, double amount) { Name = name; Amount = amount; Type = new FeeType().GetFeeTypeByName(FeeTypes.Miscellaneous.ToString()); }