Search Results for

    Show / Hide Table of Contents

    Interface ICleaningStationRepository

    Interface for all CleaningStation Db functions

    Namespace: Simplic.Logistics.Cleaning
    Assembly: Simplic.Logistics.Cleaning.dll
    Syntax
    public interface ICleaningStationRepository

    Methods

    | Improve this Doc View Source

    Delete(CleaningStation)

    Deletes a CleaningStation

    Declaration
    void Delete(CleaningStation cleaningStation)
    Parameters
    Type Name Description
    CleaningStation cleaningStation
    | Improve this Doc View Source

    Get(Guid)

    Gets a single CleaningStation by its Id

    Declaration
    CleaningStation Get(Guid id)
    Parameters
    Type Name Description
    System.Guid id
    Returns
    Type Description
    CleaningStation
    | Improve this Doc View Source

    GetAll()

    Gets a list of all cleaning stations

    Declaration
    IEnumerable<CleaningStation> GetAll()
    Returns
    Type Description
    System.Collections.Generic.IEnumerable<CleaningStation>
    | Improve this Doc View Source

    GetCleaningStationsByContactId(Guid)

    Return all cleaning stations for a given contact id.

    Declaration
    IEnumerable<CleaningStation> GetCleaningStationsByContactId(Guid contactId)
    Parameters
    Type Name Description
    System.Guid contactId
    Returns
    Type Description
    System.Collections.Generic.IEnumerable<CleaningStation>
    | Improve this Doc View Source

    GetVehicleTypes(Guid)

    Declaration
    IEnumerable<VehicleType> GetVehicleTypes(Guid id)
    Parameters
    Type Name Description
    System.Guid id
    Returns
    Type Description
    System.Collections.Generic.IEnumerable<VehicleType>
    | Improve this Doc View Source

    Save(CleaningStation)

    Saves a CleaningStation

    Declaration
    void Save(CleaningStation cleaningStation)
    Parameters
    Type Name Description
    CleaningStation cleaningStation
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2018 SIMPLIC GmbH
    Generated by DocFx