C# Class DummyBackend.managers.AdminstrationManager

Inheritance: AdminstrationContract
Show file Open project: asadiq91/Contract

Public Methods

Method Description
AdminstrationManager ( ) : System
CreateCustomer ( Customer customer ) : Customer
CreateDock ( Dock dock ) : Dock
CreateFerry ( Ferry ferry ) : Ferry
CreateReservation ( Reservation reservation ) : Reservation
CreateRoute ( Route route ) : Route
CreateTrip ( Trip trip ) : Trip
CreateVehicle ( Vehicle vehicle ) : Vehicle
DeleteCustomer ( Customer customer ) : bool
DeleteDock ( Dock dock ) : bool
DeleteFerry ( Ferry ferry ) : bool
DeleteReservation ( Reservation reservation ) : bool
DeleteRoute ( Route route ) : bool
DeleteTrip ( Trip trip ) : bool
DeleteVehicle ( Vehicle vehicle ) : bool
GetAllCustomer ( ) : List
GetAllDocks ( ) : List
GetAllFerries ( ) : List
GetAllReservations ( ) : List
GetAllRoutes ( ) : List
GetAllTrips ( ) : List
GetAllVehicles ( ) : List
GetCustomer ( string mail ) : Customer
GetDock ( int dockId ) : Dock
GetFerry ( int ferryId ) : Ferry
GetReservation ( int reservationId ) : Reservation
GetRoute ( int routeId ) : Route
GetTrip ( int tripId ) : Trip
GetVehicle ( int vehicleId ) : Vehicle
UpdateCustomer ( Customer customer ) : Customer
UpdateDock ( Dock dock ) : Dock
UpdateFerry ( Ferry ferry ) : Ferry
UpdateReservation ( Reservation reservation ) : Reservation
UpdateRoute ( Route route ) : Route
UpdateTrip ( Trip trip ) : Trip
UpdateVehicle ( Vehicle vehicle ) : Vehicle

Method Details

AdminstrationManager() public method

public AdminstrationManager ( ) : System
return System

CreateCustomer() public method

public CreateCustomer ( Customer customer ) : Customer
customer Contract.dto.Customer
return Contract.dto.Customer

CreateDock() public method

public CreateDock ( Dock dock ) : Dock
dock Contract.dto.Dock
return Contract.dto.Dock

CreateFerry() public method

public CreateFerry ( Ferry ferry ) : Ferry
ferry Contract.dto.Ferry
return Contract.dto.Ferry

CreateReservation() public method

public CreateReservation ( Reservation reservation ) : Reservation
reservation Reservation
return Reservation

CreateRoute() public method

public CreateRoute ( Route route ) : Route
route Route
return Route

CreateTrip() public method

public CreateTrip ( Trip trip ) : Trip
trip Contract.dto.Trip
return Contract.dto.Trip

CreateVehicle() public method

public CreateVehicle ( Vehicle vehicle ) : Vehicle
vehicle Vehicle
return Vehicle

DeleteCustomer() public method

public DeleteCustomer ( Customer customer ) : bool
customer Contract.dto.Customer
return bool

DeleteDock() public method

public DeleteDock ( Dock dock ) : bool
dock Contract.dto.Dock
return bool

DeleteFerry() public method

public DeleteFerry ( Ferry ferry ) : bool
ferry Contract.dto.Ferry
return bool

DeleteReservation() public method

public DeleteReservation ( Reservation reservation ) : bool
reservation Reservation
return bool

DeleteRoute() public method

public DeleteRoute ( Route route ) : bool
route Route
return bool

DeleteTrip() public method

public DeleteTrip ( Trip trip ) : bool
trip Contract.dto.Trip
return bool

DeleteVehicle() public method

public DeleteVehicle ( Vehicle vehicle ) : bool
vehicle Vehicle
return bool

GetAllCustomer() public method

public GetAllCustomer ( ) : List
return List

GetAllDocks() public method

public GetAllDocks ( ) : List
return List

GetAllFerries() public method

public GetAllFerries ( ) : List
return List

GetAllReservations() public method

public GetAllReservations ( ) : List
return List

GetAllRoutes() public method

public GetAllRoutes ( ) : List
return List

GetAllTrips() public method

public GetAllTrips ( ) : List
return List

GetAllVehicles() public method

public GetAllVehicles ( ) : List
return List

GetCustomer() public method

public GetCustomer ( string mail ) : Customer
mail string
return Contract.dto.Customer

GetDock() public method

public GetDock ( int dockId ) : Dock
dockId int
return Contract.dto.Dock

GetFerry() public method

public GetFerry ( int ferryId ) : Ferry
ferryId int
return Contract.dto.Ferry

GetReservation() public method

public GetReservation ( int reservationId ) : Reservation
reservationId int
return Reservation

GetRoute() public method

public GetRoute ( int routeId ) : Route
routeId int
return Route

GetTrip() public method

public GetTrip ( int tripId ) : Trip
tripId int
return Contract.dto.Trip

GetVehicle() public method

public GetVehicle ( int vehicleId ) : Vehicle
vehicleId int
return Vehicle

UpdateCustomer() public method

public UpdateCustomer ( Customer customer ) : Customer
customer Contract.dto.Customer
return Contract.dto.Customer

UpdateDock() public method

public UpdateDock ( Dock dock ) : Dock
dock Contract.dto.Dock
return Contract.dto.Dock

UpdateFerry() public method

public UpdateFerry ( Ferry ferry ) : Ferry
ferry Contract.dto.Ferry
return Contract.dto.Ferry

UpdateReservation() public method

public UpdateReservation ( Reservation reservation ) : Reservation
reservation Reservation
return Reservation

UpdateRoute() public method

public UpdateRoute ( Route route ) : Route
route Route
return Route

UpdateTrip() public method

public UpdateTrip ( Trip trip ) : Trip
trip Contract.dto.Trip
return Contract.dto.Trip

UpdateVehicle() public method

public UpdateVehicle ( Vehicle vehicle ) : Vehicle
vehicle Vehicle
return Vehicle