-
Notifications
You must be signed in to change notification settings - Fork 0
/
IAutoAluga.cs
38 lines (24 loc) · 879 Bytes
/
IAutoAluga.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AutoAluga
{
interface IAutoAluga
{
void SetPrecoDia(float PrecoDia);
bool AddCliente(long Carta, String Nome);
bool AddUtilitario(String Matricula);
bool AddCarroLuxo(String Matricula, float Taxa);
int RegistarAluguel(long Carta, String Matricula, int Dias);
void MostrarAlugueresCliente(long Carta);
void MostrarAlugueresViatura(String Matricula);
void MostrarTotalFacturadoViatura(String Matricula);
void MostrarTotalFacturado();
void ListarTodasViaturas();
void ListarTodosClientes();
bool RemoverCliente(long Carta);
bool RemoverViatura(String Matricula);
bool DevolverViatura(String Matricula);
}
}